:root {
  --navy-950: #081321;
  --navy-900: #0e1d31;
  --navy-850: #12243a;
  --navy-800: #17304b;
  --navy-700: #274662;
  --gold-500: #d6a84f;
  --gold-400: #edc675;
  --gold-300: #f5daa0;
  --green-600: #2f956d;
  --green-500: #46b884;
  --green-100: #dcf4e9;
  --white: #ffffff;
  --off-white: #f8fafc;
  --sand-50: #fbfaf7;
  --slate-50: #f5f7fa;
  --slate-100: #e8edf2;
  --slate-200: #d8e0e8;
  --slate-400: #8796a8;
  --slate-500: #657588;
  --slate-600: #4b5f73;
  --text: #17283b;
  --muted: #5b6b7c;
  --line: rgba(18, 36, 58, 0.12);
  --shadow-sm: 0 10px 32px rgba(14, 29, 49, 0.07);
  --shadow-md: 0 24px 60px rgba(14, 29, 49, 0.12);
  --shadow-dark: 0 30px 80px rgba(3, 11, 20, 0.34);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1200px;
  --header-height: 78px;
  --font: "Manrope", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: anywhere;
}

body.lang-zh {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.75;
}

body.lang-my {
  font-family: "Noto Sans Myanmar", Myanmar Text, sans-serif;
  line-height: 1.8;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .site-header {
  background: var(--white);
  backdrop-filter: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy-900);
  font-weight: 750;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.lang-zh h1,
.lang-zh h2,
.lang-zh h3,
.lang-my h1,
.lang-my h2,
.lang-my h3 {
  letter-spacing: 0;
}

p {
  color: var(--muted);
}

::selection {
  color: var(--navy-950);
  background: var(--gold-300);
}

:focus-visible {
  outline: 3px solid rgba(214, 168, 79, 0.65);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.section--soft {
  background: var(--slate-50);
}

.section--navy {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(70, 184, 132, 0.14), transparent 28%),
    radial-gradient(circle at 10% 100%, rgba(214, 168, 79, 0.13), transparent 26%),
    var(--navy-900);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--navy-900);
  background: var(--gold-400);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--green-600);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: var(--gold-400);
}

.lang-my .eyebrow {
  letter-spacing: 0;
  text-transform: none;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 54px;
}

.section-heading h2 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-intro {
  max-width: 650px;
  margin: 0;
  font-size: 1.06rem;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center h2,
.section-heading--center .section-intro {
  margin-inline: auto;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 54px;
}

.section-heading-row .section-heading {
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  color: var(--navy-800);
  border-bottom: 1px solid var(--gold-500);
  font-size: 0.92rem;
  font-weight: 750;
  transition: color 0.2s ease, gap 0.2s ease;
}

.text-link:hover {
  gap: 12px;
  color: var(--green-600);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 10px 24px rgba(14, 29, 49, 0.16);
}

.button--primary:hover {
  background: var(--navy-800);
  box-shadow: 0 14px 32px rgba(14, 29, 49, 0.22);
}

.button--gold {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 12px 30px rgba(214, 168, 79, 0.24);
}

.button--gold:hover {
  box-shadow: 0 16px 36px rgba(214, 168, 79, 0.34);
}

.button--secondary {
  color: var(--navy-900);
  background: transparent;
  border-color: var(--slate-200);
}

.button--secondary:hover {
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.button--ghost-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.24);
}

.button--ghost-light:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.4);
}

.button--full {
  width: 100%;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 5px 10px;
  color: var(--navy-700);
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
}

.lang-my .tag {
  min-height: 38px;
  padding-block: 7px;
  line-height: 1.7;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--slate-600);
  font-size: 0.9rem;
}

.check-icon {
  display: grid;
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  place-items: center;
  margin-top: 1px;
  color: var(--green-600);
  background: var(--green-100);
  border-radius: 50%;
}

.status {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  gap: 7px;
  padding: 4px 9px;
  color: var(--slate-600);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.status i {
  width: 6px;
  height: 6px;
  background: var(--slate-400);
  border-radius: 50%;
}

.status--live i,
.status--progress i {
  background: var(--green-500);
  box-shadow: 0 0 0 3px rgba(70, 184, 132, 0.16);
}

.status--prototype i {
  background: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(214, 168, 79, 0.17);
}

.lang-my .status {
  letter-spacing: 0;
  text-transform: none;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 32px rgba(14, 29, 49, 0.07);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 30px;
}

.site-logo {
  flex: 0 0 auto;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  color: var(--navy-900);
}

.brand-copy {
  display: grid;
  gap: 0;
}

.brand-copy strong {
  color: var(--navy-900);
  font-size: 0.97rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.brand-copy span {
  color: var(--slate-500);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.lang-zh .brand-copy span,
.lang-my .brand-copy span {
  letter-spacing: 0;
  text-transform: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 28px 0 25px;
  color: var(--slate-600);
  font-size: 0.78rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  background: var(--gold-500);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--navy-900);
}

.desktop-nav a[aria-current="page"]::after,
.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--slate-400);
  white-space: nowrap;
}

.language-switcher__icon {
  margin-right: 2px;
  color: var(--slate-500);
}

.language-switcher a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  color: var(--slate-500);
  font-family: "Manrope", "Noto Sans SC", "Noto Sans Myanmar", sans-serif;
  font-size: 0.68rem;
  font-weight: 750;
  line-height: 1.5;
}

.language-switcher a:hover,
.language-switcher a[aria-current="true"] {
  color: var(--navy-900);
}

.language-switcher a[aria-current="true"] {
  text-decoration: underline;
  text-decoration-color: var(--gold-500);
  text-underline-offset: 4px;
}

.header-cta {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 0.75rem;
}

.menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--navy-900);
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: 50%;
}

.menu-toggle__close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__open {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__close {
  display: block;
}

.mobile-menu {
  position: absolute;
  z-index: 99;
  top: 100%;
  right: 0;
  left: 0;
  height: calc(100vh - var(--header-height));
  overflow-y: auto;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.mobile-menu__inner {
  display: grid;
  gap: 0;
  padding-block: 20px 36px;
}

.mobile-menu__inner > a:not(.button) {
  display: flex;
  min-height: 53px;
  align-items: center;
  justify-content: space-between;
  color: var(--navy-900);
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  font-weight: 700;
}

.mobile-menu__inner > a[aria-current="page"] {
  color: var(--green-600);
}

.mobile-menu__language {
  display: grid;
  gap: 12px;
  padding: 20px 0 22px;
}

.mobile-menu__language > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--slate-500);
  font-size: 0.78rem;
  font-weight: 700;
}

.mobile-menu__language .language-switcher {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.mobile-menu__language .language-switcher a {
  min-height: 48px;
  justify-content: center;
  padding: 8px 6px;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: 10px;
  font-size: 0.82rem;
  text-decoration: none;
}

.mobile-menu__language .language-switcher a[aria-current="true"] {
  color: var(--navy-900);
  background: rgba(214, 168, 79, 0.13);
  border-color: rgba(214, 168, 79, 0.48);
}

.translation-notice {
  color: #513c12;
  background: #fff7df;
  border-bottom: 1px solid #f0dfae;
}

.translation-notice .container {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.83rem;
  font-weight: 600;
  text-align: center;
}

/* Hero */
.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(105deg, rgba(8, 19, 33, 0.98) 0%, rgba(14, 29, 49, 0.97) 55%, rgba(19, 48, 66, 0.96) 100%),
    var(--navy-900);
}

.hero::before {
  position: absolute;
  width: 720px;
  height: 720px;
  top: -430px;
  left: 43%;
  border: 1px solid rgba(245, 198, 117, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(245, 198, 117, 0.025), 0 0 0 220px rgba(245, 198, 117, 0.018);
  content: "";
}

.hero::after {
  position: absolute;
  right: -16%;
  bottom: -200px;
  width: 720px;
  height: 300px;
  background: repeating-radial-gradient(ellipse at center, transparent 0 14px, rgba(70, 184, 132, 0.12) 15px 16px);
  content: "";
  opacity: 0.45;
  transform: rotate(-8deg);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero__glow--one {
  width: 340px;
  height: 340px;
  top: -190px;
  left: 57%;
  background: rgba(237, 198, 117, 0.13);
  box-shadow: 0 0 150px rgba(237, 198, 117, 0.16);
}

.hero__glow--two {
  width: 250px;
  height: 250px;
  right: -100px;
  bottom: 40px;
  background: rgba(70, 184, 132, 0.08);
  box-shadow: 0 0 120px rgba(70, 184, 132, 0.16);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0, 1.1fr) minmax(430px, 0.9fr);
  align-items: center;
  gap: 55px;
  padding-block: 68px 76px;
}

.hero__copy h1 {
  max-width: 680px;
  margin-bottom: 25px;
  color: var(--white);
  font-size: clamp(2.65rem, 4.4vw, 4.25rem);
  letter-spacing: -0.052em;
}

.lang-zh .hero__copy h1,
.lang-my .hero__copy h1 {
  letter-spacing: 0;
}

.hero__intro {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(238, 244, 249, 0.75);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__proof li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(230, 238, 245, 0.64);
  font-size: 0.71rem;
  font-weight: 650;
}

.hero__proof svg {
  color: var(--green-500);
}

.hero-system {
  position: relative;
  overflow: hidden;
  color: var(--text);
  background: rgba(247, 250, 252, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  box-shadow: var(--shadow-dark);
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.hero-system::after {
  position: absolute;
  top: -110px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(214, 168, 79, 0.22), transparent 65%);
  content: "";
}

.hero-system__topbar {
  display: flex;
  height: 43px;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  color: var(--slate-500);
  background: var(--white);
  border-bottom: 1px solid var(--slate-100);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.59rem;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i,
.project-window__bar i,
.case-shot__bar i {
  width: 6px;
  height: 6px;
  background: var(--slate-200);
  border-radius: 50%;
}

.window-dots i:first-child,
.project-window__bar i:first-child,
.case-shot__bar i:first-child {
  background: #f1b6a8;
}

.window-dots i:nth-child(2),
.project-window__bar i:nth-child(2),
.case-shot__bar i:nth-child(2) {
  background: var(--gold-400);
}

.window-dots i:last-child,
.project-window__bar i:last-child,
.case-shot__bar i:last-child {
  background: #8fd4b5;
}

.system-live {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  color: var(--green-600);
}

.system-live i {
  width: 6px;
  height: 6px;
  background: var(--green-500);
  border-radius: 50%;
}

.hero-system__body {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.hero-system__heading {
  display: grid;
  gap: 3px;
  margin-bottom: 18px;
}

.hero-system__heading span {
  color: var(--green-600);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-system__heading strong {
  color: var(--navy-900);
  font-size: 1rem;
}

.system-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.system-card {
  display: grid;
  min-height: 83px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 13px;
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(14, 29, 49, 0.045);
}

.system-card__icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--navy-800);
  background: #eef3f7;
  border-radius: 9px;
}

.system-card--2 .system-card__icon,
.system-card--4 .system-card__icon {
  color: #865f18;
  background: #fbf1d9;
}

.system-card--3 .system-card__icon {
  color: var(--green-600);
  background: var(--green-100);
}

.system-card strong,
.system-card small {
  display: block;
}

.system-card strong {
  color: var(--navy-900);
  font-size: 0.67rem;
  line-height: 1.4;
}

.system-card small {
  margin-top: 2px;
  color: var(--slate-500);
  font-size: 0.51rem;
  line-height: 1.4;
}

.system-card__arrow {
  color: var(--slate-400);
}

.system-activity {
  margin-top: 9px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: 12px;
}

.system-activity__label {
  display: flex;
  justify-content: space-between;
  color: var(--slate-500);
  font-size: 0.55rem;
  font-weight: 700;
}

.activity-bars {
  display: flex;
  height: 60px;
  align-items: end;
  gap: 9px;
  margin-top: 10px;
  background: repeating-linear-gradient(to bottom, var(--slate-100) 0 1px, transparent 1px 20px);
}

.activity-bars i {
  width: 100%;
  height: var(--h);
  background: linear-gradient(to top, var(--navy-800), var(--green-500));
  border-radius: 3px 3px 0 0;
  opacity: 0.78;
}

/* Trust strip */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-strip__inner {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.trust-strip p {
  margin: 0;
  color: var(--navy-900);
  font-size: 0.83rem;
  font-weight: 750;
}

.trust-strip__inner > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 24px;
}

.trust-strip span {
  position: relative;
  color: var(--slate-500);
  font-size: 0.7rem;
  font-weight: 700;
}

.trust-strip span:not(:first-child)::before {
  position: absolute;
  top: 50%;
  left: -14px;
  width: 3px;
  height: 3px;
  background: var(--gold-500);
  border-radius: 50%;
  content: "";
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.service-card {
  min-height: 365px;
  padding: 27px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  border-color: rgba(214, 168, 79, 0.46);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 52px;
}

.service-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--navy-800);
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: 13px;
}

.service-card__number,
.service-detail__number {
  color: var(--slate-400);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem;
}

.service-card h3 {
  margin-bottom: 13px;
  font-size: 1.16rem;
}

.service-card p {
  margin-bottom: 20px;
  font-size: 0.83rem;
  line-height: 1.7;
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 5px 8px;
  color: var(--slate-500);
  background: var(--slate-50);
  border-radius: 5px;
  font-size: 0.64rem;
  font-weight: 650;
}

/* Work preview and placeholder visuals */
.work-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.work-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.work-card__visual {
  position: relative;
  display: grid;
  height: 245px;
  place-items: center;
  overflow: hidden;
  background: var(--navy-800);
}

.work-card__visual::before,
.case-study__visual::before {
  position: absolute;
  width: 240px;
  height: 240px;
  top: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(245, 198, 117, 0.34), transparent 65%);
  content: "";
}

.project-visual--rays-bible {
  background: #253c37;
}

.project-visual--nonprofit-toolkit {
  background: #443c55;
}

.project-visual--ai-workflows {
  background: #243551;
}

.project-window {
  width: 78%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  transform: rotate(-2deg);
}

.work-card:nth-child(even) .project-window {
  transform: rotate(2deg);
}

.project-window__bar {
  display: flex;
  height: 26px;
  align-items: center;
  gap: 4px;
  padding: 0 9px;
  background: #f7f8fa;
  border-bottom: 1px solid var(--slate-100);
}

.project-window__bar span {
  margin-left: 5px;
  color: var(--slate-500);
  font-size: 0.42rem;
  font-weight: 700;
}

.project-window__canvas {
  display: grid;
  height: 128px;
  grid-template-columns: 25% 1fr;
}

.project-window__rail {
  background: #edf1f3;
  border-right: 1px solid #e2e7eb;
}

.project-window__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  padding: 14px;
}

.project-window__content i {
  display: block;
  min-height: 35px;
  background: #e9eef2;
  border-radius: 5px;
}

.project-window__content i:first-child {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #dceae5, #f2e5c4);
}

.visual-index {
  position: absolute;
  right: 16px;
  bottom: 13px;
  color: rgba(255, 255, 255, 0.58);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.64rem;
}

.work-card__body {
  padding: 25px;
}

.work-card__meta {
  display: flex;
  min-height: 28px;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
}

.work-card__meta > span:last-child {
  overflow: hidden;
  color: var(--slate-500);
  font-size: 0.65rem;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.work-card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.work-card__body > p {
  min-height: 86px;
  margin-bottom: 17px;
  font-size: 0.8rem;
  line-height: 1.7;
}

.work-card .tag-list {
  margin-bottom: 22px;
}

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 90px;
}

.why-intro .section-heading {
  margin-bottom: 36px;
}

.why-mark {
  position: relative;
  width: 150px;
  height: 110px;
  color: var(--navy-900);
}

.why-mark .logo-mark--large {
  width: 100px;
  height: 100px;
}

.why-mark span {
  position: absolute;
  right: 0;
  bottom: 25px;
  width: 70px;
  height: 1px;
  background: var(--gold-500);
}

.why-list {
  border-top: 1px solid var(--line);
}

.why-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.why-item > span {
  color: var(--gold-500);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem;
}

.why-item h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.why-item p {
  max-width: 520px;
  margin: 0;
  font-size: 0.88rem;
}

/* Process */
.section--navy .section-heading h2 {
  color: var(--white);
}

.section--navy .section-intro {
  color: rgba(236, 242, 247, 0.67);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 70px 0 0;
  padding: 0;
  list-style: none;
}

.process-step {
  position: relative;
  padding-right: 25px;
}

.process-step__number {
  color: var(--gold-400);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.66rem;
}

.process-step__line {
  position: relative;
  height: 1px;
  margin: 20px 0 25px;
  background: rgba(255, 255, 255, 0.16);
}

.process-step__line i {
  position: absolute;
  top: -4px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--gold-500);
  border: 2px solid var(--navy-900);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--gold-500);
}

.process-step h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1rem;
}

.process-step p {
  margin: 0;
  color: rgba(236, 242, 247, 0.61);
  font-size: 0.76rem;
  line-height: 1.7;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.pricing-card {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 34px 30px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.pricing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.pricing-card--featured {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 5%, rgba(214, 168, 79, 0.18), transparent 30%),
    var(--navy-900);
  border-color: var(--navy-900);
  box-shadow: var(--shadow-md);
}

.pricing-card__popular {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px 9px;
  color: var(--navy-900);
  background: var(--gold-400);
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 800;
}

.pricing-card__period {
  margin-bottom: 9px;
  color: var(--green-600);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-card--featured .pricing-card__period {
  color: var(--gold-400);
}

.pricing-card h3 {
  margin-bottom: 14px;
  font-size: 1.3rem;
}

.pricing-card__price {
  margin-bottom: 13px;
  color: var(--navy-900);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.pricing-card__for {
  min-height: 56px;
  margin-bottom: 25px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
}

.pricing-card--featured h3,
.pricing-card--featured .pricing-card__price {
  color: var(--white);
}

.pricing-card--featured .pricing-card__for,
.pricing-card--featured .check-list li {
  color: rgba(237, 243, 248, 0.68);
}

.pricing-card--featured .pricing-card__for {
  border-color: rgba(255, 255, 255, 0.15);
}

.pricing-card .check-list {
  margin-bottom: 28px;
}

.pricing-card .button {
  margin-top: auto;
}

.pricing-card--featured .button--secondary {
  color: var(--navy-950);
  background: var(--gold-400);
  border-color: var(--gold-400);
}

.pricing-note {
  max-width: 700px;
  margin: 28px auto 0;
  font-size: 0.77rem;
  text-align: center;
}

/* About preview */
.about-preview__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: 86px;
}

.ray-portrait {
  position: relative;
  display: grid;
  height: 500px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(155deg, rgba(14, 29, 49, 0.3), rgba(14, 29, 49, 0.9)),
    linear-gradient(130deg, #284a60, #11233a);
  border-radius: var(--radius-lg);
}

.ray-portrait::before {
  position: absolute;
  width: 330px;
  height: 330px;
  top: -180px;
  right: -90px;
  border: 1px solid rgba(237, 198, 117, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(237, 198, 117, 0.035), 0 0 0 90px rgba(237, 198, 117, 0.025);
  content: "";
}

.ray-portrait__glow {
  position: absolute;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(214, 168, 79, 0.25), transparent 68%);
}

.ray-monogram {
  position: relative;
  z-index: 1;
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  color: var(--gold-300);
  border: 1px solid rgba(237, 198, 117, 0.38);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 5rem;
}

.ray-portrait__caption {
  position: absolute;
  right: 28px;
  bottom: 25px;
  left: 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.ray-portrait__caption span {
  font-size: 1rem;
  font-weight: 750;
}

.ray-portrait__caption small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.58rem;
}

.about-preview__copy h2 {
  max-width: 660px;
  margin-bottom: 25px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.about-preview__copy > p:not(.eyebrow) {
  max-width: 650px;
  font-size: 0.95rem;
}

.about-preview__copy .tag-list {
  max-width: 690px;
  margin: 28px 0;
}

/* CTA */
.section--cta {
  padding: 86px 0;
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 70px;
  overflow: hidden;
  padding: 62px 65px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 0%, rgba(214, 168, 79, 0.23), transparent 28%),
    radial-gradient(circle at 0% 100%, rgba(70, 184, 132, 0.13), transparent 30%),
    var(--navy-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.cta-panel::after {
  position: absolute;
  width: 260px;
  height: 260px;
  top: -180px;
  right: 25%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(255, 255, 255, 0.02), 0 0 0 90px rgba(255, 255, 255, 0.015);
  content: "";
}

.cta-panel h2 {
  max-width: 760px;
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.cta-panel p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: rgba(236, 242, 247, 0.68);
  font-size: 0.92rem;
}

.cta-panel__actions {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  min-width: 190px;
}

/* Page hero */
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% -20%, rgba(214, 168, 79, 0.19), transparent 35%),
    radial-gradient(circle at 15% 130%, rgba(70, 184, 132, 0.14), transparent 30%),
    var(--navy-900);
}

.page-hero::after {
  position: absolute;
  width: 460px;
  height: 460px;
  top: -300px;
  right: 8%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.018), 0 0 0 140px rgba(255, 255, 255, 0.012);
  content: "";
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 460px;
  flex-direction: column;
  justify-content: center;
  padding-block: 92px;
}

.page-hero h1 {
  max-width: 920px;
  margin-bottom: 23px;
  color: var(--white);
  font-size: clamp(2.75rem, 6vw, 5.2rem);
  letter-spacing: -0.05em;
}

.page-hero__intro {
  max-width: 740px;
  margin: 0;
  color: rgba(236, 242, 247, 0.7);
  font-size: 1.05rem;
}

/* Services detail */
.service-detail-list {
  display: grid;
  gap: 26px;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 65px;
  padding: 50px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.service-detail__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.service-detail h2 {
  margin-bottom: 17px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.service-detail__intro > p {
  margin-bottom: 28px;
  font-size: 0.93rem;
}

.service-detail h3 {
  margin-bottom: 13px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-detail__scope {
  padding-left: 45px;
  border-left: 1px solid var(--line);
}

.service-detail__scope .check-list {
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}

.service-detail__note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 28px 0 0;
  padding: 17px;
  color: var(--slate-600);
  background: var(--slate-50);
  border-left: 2px solid var(--gold-500);
  border-radius: 0 8px 8px 0;
  font-size: 0.76rem;
}

.service-detail__note svg {
  flex: 0 0 18px;
  color: var(--gold-500);
}

/* Portfolio */
.portfolio-note {
  background: var(--sand-50);
  border-bottom: 1px solid var(--line);
}

.portfolio-note .container {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.portfolio-note svg {
  flex: 0 0 18px;
  color: var(--green-600);
}

.portfolio-note p {
  margin: 0;
  font-size: 0.78rem;
}

.portfolio-list {
  padding-top: 88px;
}

.case-study {
  margin-bottom: 120px;
  scroll-margin-top: 105px;
}

.case-study:last-child {
  margin-bottom: 0;
}

.case-study__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 38px;
}

.case-study__meta {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
}

.case-study__meta > span:first-child {
  color: var(--gold-500);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem;
}

.case-study h2 {
  margin-bottom: 9px;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.case-study__type {
  margin: 0;
  color: var(--green-600);
  font-size: 0.75rem;
  font-weight: 750;
}

.case-study__summary {
  margin: 0;
  font-size: 0.94rem;
}

.case-study__visual {
  position: relative;
  display: grid;
  min-height: 480px;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  overflow: hidden;
  padding: 36px;
  background: var(--navy-800);
  border-radius: var(--radius-lg);
}

.case-shot {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.case-shot--1 {
  grid-row: 1 / 3;
}

.case-shot__bar {
  display: flex;
  height: 28px;
  flex: 0 0 28px;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  background: var(--slate-50);
  border-bottom: 1px solid var(--slate-100);
}

.case-shot__ui {
  display: grid;
  min-height: 0;
  flex: 1;
  grid-template-columns: 1.3fr 0.7fr;
  grid-template-rows: 0.6fr 1fr;
  gap: 9px;
  padding: 13px;
}

.case-shot__ui span {
  display: block;
  background: var(--slate-100);
  border-radius: 6px;
}

.case-shot__ui span:first-child {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #e2efe9, #f5ead0);
}

.case-shot p {
  margin: 0;
  padding: 9px 13px;
  color: var(--slate-500);
  border-top: 1px solid var(--slate-100);
  font-size: 0.59rem;
  font-weight: 700;
}

.case-study__story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}

.case-study__story h3,
.case-study__details h3,
.case-study__reflection h3 {
  margin-bottom: 12px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-study__story p {
  margin: 0;
  font-size: 0.88rem;
}

.case-study__details {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1fr;
  gap: 50px;
  padding: 48px 0;
}

.case-study__reflection {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 35px;
  background: var(--slate-50);
  border-radius: var(--radius-md);
}

.case-study__reflection > div:first-child {
  position: relative;
  padding-left: 48px;
}

.case-study__reflection > div:first-child > span {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold-500);
}

.case-study__reflection p {
  margin: 0;
  font-size: 0.84rem;
}

/* About page */
.brand-story__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 90px;
}

.brand-story__visual {
  position: relative;
  display: grid;
  gap: 11px;
  padding: 45px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.brand-symbol-large {
  display: grid;
  height: 220px;
  place-items: center;
  margin-bottom: 15px;
  background:
    radial-gradient(circle, rgba(214, 168, 79, 0.13), transparent 55%),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}

.logo-mark--story {
  width: 135px;
  height: 135px;
  color: var(--white);
}

.brand-word-pair {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-word-pair span {
  color: var(--white);
  font-weight: 750;
}

.brand-word-pair small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.61rem;
}

.brand-story__copy h2,
.about-ray__copy h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 3.45rem);
}

.brand-story__copy > p:not(.eyebrow),
.about-ray__copy > p {
  font-size: 0.96rem;
}

.brand-story__copy blockquote {
  margin: 32px 0 0;
  padding: 24px 0 24px 27px;
  color: var(--navy-800);
  border-left: 2px solid var(--gold-500);
  font-size: 1.25rem;
  font-weight: 650;
  line-height: 1.6;
}

.about-ray__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: 90px;
}

.about-ray__copy h3 {
  margin: 34px 0 17px;
  font-size: 1rem;
}

.about-ray__copy .check-list {
  grid-template-columns: 1fr 1fr;
}

.about-ray__side {
  display: grid;
  gap: 18px;
}

.ray-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.ray-card__portrait {
  display: grid;
  width: 86px;
  height: 86px;
  flex: 0 0 86px;
  place-items: center;
  color: var(--gold-300);
  background: var(--navy-900);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 2.8rem;
}

.ray-card strong {
  color: var(--navy-900);
  font-size: 1.1rem;
}

.ray-card p {
  margin: 3px 0 0;
  font-size: 0.74rem;
}

.belief-card {
  padding: 35px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius-md);
}

.belief-card > span {
  display: block;
  margin-bottom: 35px;
  color: var(--gold-400);
}

.belief-card .eyebrow {
  color: var(--gold-400);
}

.belief-card blockquote {
  margin: 0;
  color: var(--white);
  font-size: 1.22rem;
  font-weight: 650;
  line-height: 1.55;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.value-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.value-card > span {
  color: var(--gold-500);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem;
}

.value-card h2 {
  margin: 42px 0 12px;
  font-size: 1.45rem;
}

.value-card p {
  margin: 0;
  font-size: 0.83rem;
}

.tools-panel {
  display: grid;
  grid-template-columns: 230px 1fr;
  align-items: start;
  gap: 40px;
  margin-top: 55px;
  padding: 40px;
  background: var(--slate-50);
  border-radius: var(--radius-md);
}

.tools-panel h2 {
  margin: 0;
  font-size: 1.2rem;
}

/* Pricing page */
.pricing-page {
  padding-bottom: 80px;
}

.pricing-grid--page .pricing-card {
  min-height: 560px;
}

.maintenance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
}

.maintenance-card {
  padding: 29px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.maintenance-card h3 {
  margin-bottom: 26px;
  font-size: 1.05rem;
}

.maintenance-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green-600);
  font-size: 1.35rem;
}

.maintenance-card p {
  margin: 0;
  font-size: 0.79rem;
}

.pricing-explainer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  max-width: 900px;
  margin: 50px auto 0;
  padding: 30px;
  background: #fff8e8;
  border: 1px solid #f0dfb6;
  border-radius: var(--radius-md);
}

.pricing-explainer > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #765615;
  background: var(--gold-300);
  border-radius: 50%;
}

.pricing-explainer h2 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.pricing-explainer p {
  margin: 0;
  font-size: 0.8rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: start;
  gap: 55px;
}

.contact-form-wrap {
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.contact-form__heading {
  margin-bottom: 31px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.contact-form__heading h2 {
  margin-bottom: 10px;
  font-size: 1.65rem;
}

.contact-form__heading p {
  margin: 0;
  padding: 12px 14px;
  color: #6f551e;
  background: #fff8e8;
  border-radius: 8px;
  font-size: 0.72rem;
}

.contact-form {
  display: grid;
  gap: 21px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  color: var(--navy-800);
  font-size: 0.75rem;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--text);
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input,
.contact-form select {
  min-height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: var(--white);
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(214, 168, 79, 0.13);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--slate-400);
}

.button--form {
  justify-self: start;
  min-width: 170px;
}

.form-status {
  padding: 14px 16px;
  color: #315d4a;
  background: var(--green-100);
  border: 1px solid #b9e3d0;
  border-radius: 9px;
  font-size: 0.78rem;
}

.contact-sidebar {
  display: grid;
  gap: 19px;
}

.contact-card {
  padding: 35px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(214, 168, 79, 0.19), transparent 33%),
    var(--navy-900);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.contact-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 42px;
  color: var(--gold-400);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
}

.contact-card h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1.5rem;
}

.contact-card > p {
  color: rgba(237, 243, 248, 0.66);
  font-size: 0.83rem;
}

.contact-card dl {
  margin: 28px 0 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-card dl div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.contact-card dt {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.65rem;
  font-weight: 700;
}

.contact-card dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.7rem;
}

.contact-card dd a {
  text-decoration: underline;
  text-decoration-color: rgba(214, 168, 79, 0.6);
  text-underline-offset: 3px;
}

.next-steps {
  padding: 31px;
  background: var(--slate-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.next-steps h2 {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.next-steps ol {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.next-steps li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
}

.next-steps li span {
  color: var(--gold-500);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.62rem;
}

.next-steps li p {
  margin: 0;
  font-size: 0.76rem;
}

/* 404 */
.not-found {
  display: grid;
  min-height: 70vh;
  place-items: center;
  background: var(--slate-50);
}

.not-found__inner {
  display: grid;
  max-width: 680px;
  justify-items: center;
  padding-block: 90px;
  text-align: center;
}

.not-found__mark {
  display: grid;
  width: 90px;
  height: 90px;
  place-items: center;
  margin-bottom: 35px;
  color: var(--navy-900);
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.not-found__mark .logo-mark {
  width: 58px;
  height: 58px;
}

.not-found h1 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 6vw, 4.4rem);
}

.not-found p:not(.eyebrow) {
  margin-bottom: 30px;
}

/* Footer */
.site-footer {
  padding: 72px 0 0;
  color: var(--white);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.65fr 0.7fr 0.9fr 0.65fr;
  gap: 55px;
  padding-bottom: 58px;
}

.site-logo--footer .logo-mark {
  color: var(--white);
}

.site-logo--footer .brand-copy strong {
  color: var(--white);
}

.site-logo--footer .brand-copy span {
  color: rgba(255, 255, 255, 0.45);
}

.footer-brand > p {
  max-width: 340px;
  margin: 23px 0 0;
  color: rgba(236, 242, 247, 0.56);
  font-size: 0.8rem;
}

.footer-grid h2 {
  margin: 4px 0 20px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid li,
.footer-grid a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
}

.footer-grid a:hover {
  color: var(--gold-400);
}

.footer-languages a[lang="my"] {
  font-family: "Noto Sans Myanmar", Myanmar Text, sans-serif;
  line-height: 1.8;
}

.footer-bottom {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.39);
  font-size: 0.62rem;
}

/* Motion */
.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal--delay {
  transition-delay: 0.12s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Responsive */
@media (max-width: 1140px) {
  .desktop-nav {
    gap: 17px;
  }

  .language-switcher--desktop {
    display: none;
  }

  .hero__grid {
    gap: 45px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    min-height: 330px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 72px;
  }

  .section {
    padding: 88px 0;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero,
  .hero__grid {
    min-height: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 55px;
    padding-block: 90px;
  }

  .hero__copy {
    max-width: 760px;
  }

  .hero__copy h1 {
    font-size: clamp(2.7rem, 8vw, 4.7rem);
  }

  .hero-system {
    width: min(100%, 650px);
    transform: none;
  }

  .trust-strip__inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 25px;
  }

  .trust-strip__inner > div {
    justify-content: flex-start;
  }

  .work-preview-grid {
    grid-template-columns: 1fr 1fr;
  }

  .work-card:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .work-card:last-child .work-card__visual {
    height: 100%;
    min-height: 340px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-mark {
    display: none;
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
    gap: 45px 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-card:last-child {
    grid-column: 1 / -1;
    min-height: 470px;
  }

  .about-preview__grid,
  .brand-story__grid,
  .about-ray__grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .ray-portrait,
  .brand-story__visual {
    max-width: 600px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .cta-panel__actions {
    grid-template-columns: auto auto;
    justify-content: start;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .service-detail__scope {
    padding: 30px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .case-study__header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .case-study__details {
    grid-template-columns: 1fr 1fr;
  }

  .case-study__details > div:last-child {
    grid-column: 1 / -1;
  }

  .tools-panel {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2 {
    font-size: clamp(1.85rem, 9vw, 2.7rem);
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 38px;
  }

  .site-logo .logo-mark {
    width: 37px;
    height: 37px;
    flex-basis: 37px;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .brand-copy span {
    max-width: 145px;
    font-size: 0.52rem;
  }

  .hero__grid {
    gap: 46px;
    padding-block: 70px;
  }

  .hero__copy h1 {
    margin-bottom: 21px;
    font-size: clamp(2.35rem, 12vw, 3.65rem);
  }

  .hero__intro {
    font-size: 0.95rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__proof {
    display: grid;
    gap: 9px;
  }

  .hero-system__body {
    padding: 17px;
  }

  .system-grid {
    grid-template-columns: 1fr;
  }

  .system-card {
    min-height: 72px;
  }

  .system-activity {
    display: none;
  }

  .trust-strip__inner > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
  }

  .trust-strip span:not(:first-child)::before {
    display: none;
  }

  .services-grid,
  .work-preview-grid,
  .pricing-grid,
  .values-grid,
  .maintenance-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .service-card__top {
    margin-bottom: 36px;
  }

  .work-card:last-child {
    grid-column: auto;
    display: block;
  }

  .work-card:last-child .work-card__visual {
    height: 245px;
    min-height: 0;
  }

  .work-card__body > p {
    min-height: 0;
  }

  .why-item {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .process-step {
    padding-right: 0;
  }

  .process-step__line {
    margin-bottom: 17px;
  }

  .pricing-card,
  .pricing-card:last-child {
    grid-column: auto;
    min-height: 0;
  }

  .pricing-card__for {
    min-height: 0;
  }

  .ray-portrait {
    height: 410px;
  }

  .ray-portrait__caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .cta-panel {
    padding: 42px 25px;
    border-radius: var(--radius-md);
  }

  .cta-panel__actions {
    grid-template-columns: 1fr;
  }

  .page-hero__inner {
    min-height: 400px;
    padding-block: 70px;
  }

  .page-hero h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .page-hero__intro {
    font-size: 0.94rem;
  }

  .service-detail {
    padding: 29px 23px;
  }

  .service-detail__scope .check-list,
  .about-ray__copy .check-list {
    grid-template-columns: 1fr;
  }

  .portfolio-note .container {
    align-items: flex-start;
    padding-block: 16px;
  }

  .case-study {
    margin-bottom: 88px;
  }

  .case-study__visual {
    min-height: 560px;
    grid-template-columns: 1fr;
    grid-template-rows: 1.25fr 0.75fr 0.75fr;
    padding: 20px;
  }

  .case-shot--1 {
    grid-row: auto;
  }

  .case-shot--4 {
    display: none;
  }

  .case-study__story,
  .case-study__details,
  .case-study__reflection {
    grid-template-columns: 1fr;
    gap: 31px;
  }

  .case-study__details > div:last-child {
    grid-column: auto;
  }

  .case-study__reflection {
    padding: 27px 23px;
  }

  .brand-story__visual {
    padding: 25px;
  }

  .brand-word-pair {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .brand-story__copy blockquote {
    font-size: 1.08rem;
  }

  .about-ray__side {
    min-width: 0;
  }

  .ray-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .tools-panel,
  .contact-form-wrap {
    padding: 27px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .button--form {
    width: 100%;
  }

  .contact-card {
    padding: 29px 23px;
  }

  .contact-card dl div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .pricing-explainer {
    grid-template-columns: 1fr;
    padding: 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 25px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding-block: 22px;
  }
}

@media (max-width: 390px) {
  .brand-copy span {
    display: none;
  }

  .mobile-menu__language .language-switcher {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-grid > div:last-child {
    grid-column: auto;
  }
}
