@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Manrope:wght@400;600;700;800&display=swap");

:root {
  --ink: #12151c;
  --muted: #59616f;
  --paper: #f4f0ea;
  --white: #ffffff;
  --line: rgba(16, 19, 22, 0.14);
  --teal: #13b8bd;
  --teal-dark: #087174;
  --amber: #f5b84b;
  --rose: #ed1c2e;
  --violet: #8f078f;
  --logo-cyan: #02b9c7;
  --logo-magenta: #d0008f;
  --logo-red: #f0182d;
  --logo-gradient: linear-gradient(135deg, var(--logo-cyan) 0%, var(--logo-magenta) 52%, var(--logo-red) 100%);
  --clay: #b45f42;
  --graphite: #11151d;
  --graphite-2: #1b202b;
  --soft-teal: #d7f3ee;
  --shadow: 0 28px 90px rgba(16, 19, 22, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(17, 21, 29, 0.9);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-symbol {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-symbol img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-name {
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
}

.brand::after {
  content: "";
  width: 38px;
  height: 3px;
  border-radius: 999px;
  background: var(--logo-gradient);
  opacity: 0.92;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--white);
}

.mobile-link {
  display: none;
}

.button,
.button-secondary,
.button-dark {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button-secondary:hover,
.button-dark:hover {
  transform: translateY(-1px);
}

.button {
  background: var(--logo-gradient);
  color: var(--white);
  box-shadow:
    0 16px 34px rgba(208, 0, 143, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.button.mobile-link {
  display: none;
}

.button-secondary {
  border-color: rgba(2, 185, 199, 0.44);
  background:
    linear-gradient(135deg, rgba(2, 185, 199, 0.16), rgba(208, 0, 143, 0.1)),
    rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button-dark {
  border-color: rgba(2, 185, 199, 0.36);
  background:
    linear-gradient(135deg, rgba(2, 185, 199, 0.13), rgba(208, 0, 143, 0.1)),
    linear-gradient(135deg, var(--graphite), #232a37);
  color: var(--white);
  box-shadow: inset 0 -2px 0 rgba(240, 24, 45, 0.38);
}

.button-dark:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background:
    linear-gradient(132deg, rgba(17, 21, 29, 0.96) 0%, rgba(17, 21, 29, 0.88) 43%, rgba(8, 113, 116, 0.56) 70%, rgba(244, 240, 234, 0.96) 70%),
    #11151d;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.78), transparent 80%);
  pointer-events: none;
}

#growth-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 21, 29, 0.84) 0%, rgba(17, 21, 29, 0.48) 46%, rgba(244, 240, 234, 0.22) 100%),
    linear-gradient(0deg, rgba(17, 21, 29, 0.22), rgba(17, 21, 29, 0));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 118px 0 88px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--logo-cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--white);
  font-size: clamp(48px, 7.2vw, 98px);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  line-height: 1.65;
}

.hero-system {
  width: min(620px, 100%);
  margin-top: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.system-head {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.system-head strong {
  color: var(--logo-cyan);
}

.system-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.system-flow span {
  min-height: 76px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 900;
}

.system-flow span:last-child {
  border-right: 0;
}

.system-signal {
  height: 5px;
  display: grid;
  grid-template-columns: 1fr 0.72fr 1.4fr;
}

.system-signal span:nth-child(1) {
  background: var(--logo-cyan);
}

.system-signal span:nth-child(2) {
  background: var(--logo-magenta);
}

.system-signal span:nth-child(3) {
  background: var(--logo-red);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-row {
  width: min(1180px, calc(100% - 32px));
  position: relative;
  z-index: 3;
  margin: -34px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(17, 21, 29, 0.82);
  color: var(--white);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.trust-item {
  min-height: 108px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  font-size: 22px;
}

.trust-item span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.45;
}

.section {
  padding: 92px 0;
}

.section-tight {
  padding: 68px 0;
}

.shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--logo-red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: var(--logo-gradient);
}

.section h2,
.page-hero h1,
.section-title {
  margin: 0;
  max-width: 840px;
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section h2,
.page-hero h1,
.hero h1,
.section-title {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
}

.section-lede {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.visual-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 48px;
  align-items: center;
}

.visual-split.reverse {
  grid-template-columns: minmax(360px, 1.08fr) minmax(0, 0.92fr);
}

.visual-split.reverse .visual-copy {
  order: 2;
}

.visual-frame,
.wide-visual,
.post-hero-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(16, 19, 22, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 24px 74px rgba(16, 19, 22, 0.14);
}

.visual-frame img,
.wide-visual img,
.post-hero-media img,
.service-media img,
.blog-card img,
.image-tile img {
  display: block;
  width: 100%;
  height: auto;
}

.visual-frame img {
  aspect-ratio: 1.5;
  object-fit: cover;
}

.wide-visual {
  margin-top: 42px;
}

.wide-visual + .split,
.wide-visual + .blog-grid {
  margin-top: 34px;
}

.text-block .visual-frame {
  margin: 0 0 24px;
}

.wide-visual img {
  aspect-ratio: 2.04;
  object-fit: cover;
}

.text-block p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.signal-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink);
  font-weight: 760;
}

.signal-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 9px;
  border-radius: 2px;
  background: var(--logo-gradient);
  flex: 0 0 auto;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86)),
    var(--white);
  padding: 26px;
  box-shadow: 0 8px 30px rgba(16, 19, 22, 0.05);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(2, 185, 199, 0.45);
  box-shadow: 0 26px 60px rgba(16, 19, 22, 0.12);
}

.card.dark {
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  color: var(--white);
}

.card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
}

.card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.service-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  padding: 0;
}

.service-card .service-media {
  border-bottom: 1px solid rgba(16, 19, 22, 0.1);
  background: #edf6f4;
}

.service-card .service-media img {
  aspect-ratio: 1.6;
  object-fit: cover;
}

.service-card .service-copy {
  padding: 24px;
}

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

.image-tile {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(16, 19, 22, 0.08);
}

.image-tile img {
  aspect-ratio: 1.45;
  object-fit: cover;
}

.image-tile div {
  padding: 18px;
}

.image-tile h3 {
  margin: 0;
  font-size: 20px;
}

.image-tile p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.card.dark p {
  color: rgba(255, 255, 255, 0.8);
}

.card-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--logo-magenta);
  font-weight: 900;
}

.dark .card-link,
.dark-band .card-link {
  color: var(--logo-cyan);
}

.dark-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(2, 185, 199, 0.18), transparent 40%),
    linear-gradient(315deg, rgba(208, 0, 143, 0.16), transparent 42%),
    linear-gradient(180deg, var(--graphite), #0c1017);
  color: var(--white);
}

.dark-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.4;
  pointer-events: none;
}

.dark-band > .shell {
  position: relative;
  z-index: 1;
}

.dark-band h2,
.dark-band .section-title {
  color: var(--white);
}

.dark-band .section-lede {
  color: rgba(255, 255, 255, 0.82);
}

.dark-band .text-block p,
.dark-band .text-block li {
  color: rgba(255, 255, 255, 0.84);
}

.dark-band .section-kicker {
  color: var(--logo-cyan);
}

.ops-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ops-list li {
  min-height: 64px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.roadmap {
  background:
    linear-gradient(90deg, rgba(2, 185, 199, 0.12), transparent 42%),
    linear-gradient(270deg, rgba(208, 0, 143, 0.07), transparent 40%),
    var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.step {
  border-left: 3px solid var(--logo-cyan);
  background: var(--paper);
  padding: 22px;
}

.step span {
  color: var(--logo-red);
  font-size: 13px;
  font-weight: 900;
}

.step h3 {
  margin: 12px 0 0;
  font-size: 20px;
}

.step p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.pricing-preview {
  background: var(--paper);
}

.experience-band {
  background:
    linear-gradient(110deg, rgba(240, 24, 45, 0.08), transparent 34%),
    linear-gradient(250deg, rgba(2, 185, 199, 0.12), transparent 42%),
    var(--paper);
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.engagement-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(16, 19, 22, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 26px;
  box-shadow: 0 16px 48px rgba(16, 19, 22, 0.08);
}

.engagement-card.featured {
  background: var(--graphite);
  color: var(--white);
  box-shadow: var(--shadow);
}

.engagement-card span {
  color: var(--logo-red);
  font-size: 13px;
  font-weight: 900;
}

.engagement-card.featured span {
  color: var(--logo-cyan);
}

.engagement-card h3 {
  margin: 40px 0 0;
  font-size: 25px;
  line-height: 1.1;
}

.engagement-card p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.engagement-card.featured p {
  color: rgba(255, 255, 255, 0.72);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.price-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 26px;
}

.price-card.featured {
  border: 2px solid var(--logo-cyan);
  box-shadow: var(--shadow);
}

.price-card h3 {
  margin: 0;
  font-size: 22px;
}

.price {
  margin: 18px 0 0;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.price span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.feature-list li {
  color: var(--muted);
  line-height: 1.45;
}

.feature-list li::before {
  content: "- ";
  color: var(--logo-cyan);
  font-weight: 900;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.proof-metric {
  border-top: 2px solid transparent;
  border-image: var(--logo-gradient) 1;
  padding-top: 18px;
}

.proof-metric strong {
  display: block;
  font-size: 30px;
}

.proof-metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.agency-partner-band {
  background:
    linear-gradient(135deg, rgba(2, 185, 199, 0.18), transparent 44%),
    linear-gradient(315deg, rgba(208, 0, 143, 0.11), transparent 48%),
    #eaf4f2;
}

.agency-service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.agency-process {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.agency-process article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 24px;
  box-shadow: 0 16px 48px rgba(16, 19, 22, 0.08);
}

.agency-process span {
  color: var(--logo-red);
  font-size: 13px;
  font-weight: 900;
}

.agency-process h3 {
  margin: 14px 0 0;
  font-size: 21px;
}

.agency-process p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.ops-list.light li {
  border-color: rgba(16, 19, 22, 0.14);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  box-shadow: 0 12px 36px rgba(16, 19, 22, 0.08);
}

.story-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 0;
}

.story-rail article {
  border: 1px solid rgba(16, 19, 22, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 20px;
  box-shadow: 0 14px 38px rgba(16, 19, 22, 0.08);
}

.story-rail span {
  color: var(--logo-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.story-rail h3 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 20px;
}

.story-rail p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.address-card {
  margin-top: 28px;
  border: 1px solid rgba(16, 19, 22, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 22px;
  box-shadow: 0 18px 50px rgba(16, 19, 22, 0.1);
}

.address-card span {
  display: block;
  color: var(--logo-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.address-card strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 24px;
}

.address-card p {
  margin: 6px 0 0;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 36px;
  align-items: start;
}

.form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(16, 19, 22, 0.2);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 10px 12px;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.form-status {
  min-height: 20px;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.form-status.is-success {
  color: #087a66;
}

.form-status.is-error {
  color: #b4232f;
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(2, 185, 199, 0.18), transparent 36%),
    linear-gradient(270deg, rgba(240, 24, 45, 0.12), transparent 46%),
    var(--graphite);
  color: var(--white);
  padding: 90px 0 74px;
}

.page-hero h1,
.page-hero .section-lede {
  color: var(--white);
}

.page-hero .section-lede {
  color: rgba(255, 255, 255, 0.84);
}

.about-hero {
  padding: 86px 0;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.82fr);
  gap: 48px;
  align-items: center;
}

.about-hero h1 {
  max-width: 800px;
}

.about-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.about-proof-strip span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(2, 185, 199, 0.12), rgba(208, 0, 143, 0.08)),
    rgba(255, 255, 255, 0.05);
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 900;
}

.about-hero-visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.34);
}

.about-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(17, 21, 29, 0.78)),
    linear-gradient(135deg, rgba(2, 185, 199, 0.12), transparent 45%);
  pointer-events: none;
}

.about-hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-visual-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(17, 21, 29, 0.78);
  padding: 16px;
  backdrop-filter: blur(16px);
}

.about-visual-badge span {
  display: block;
  color: var(--logo-cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-visual-badge strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.18;
}

.about-story-section {
  background:
    linear-gradient(115deg, rgba(2, 185, 199, 0.08), transparent 34%),
    var(--paper);
}

.about-sticky {
  position: sticky;
  top: 110px;
}

.madurai-band {
  background:
    linear-gradient(120deg, rgba(2, 185, 199, 0.18), transparent 40%),
    linear-gradient(300deg, rgba(208, 0, 143, 0.12), transparent 44%),
    #eaf4f2;
}

.madurai-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 56px;
  align-items: start;
}

.madurai-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.madurai-facts article {
  border: 1px solid rgba(16, 19, 22, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 18px;
  box-shadow: 0 14px 38px rgba(16, 19, 22, 0.08);
}

.madurai-facts strong,
.madurai-facts span {
  display: block;
}

.madurai-facts strong {
  color: var(--ink);
  font-size: 15px;
}

.madurai-facts span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.about-client-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.about-values-band {
  background:
    linear-gradient(135deg, rgba(240, 24, 45, 0.08), transparent 36%),
    linear-gradient(315deg, rgba(2, 185, 199, 0.1), transparent 42%),
    var(--paper);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.blog-preview {
  background:
    linear-gradient(130deg, rgba(2, 185, 199, 0.13), transparent 38%),
    linear-gradient(310deg, rgba(208, 0, 143, 0.12), transparent 44%),
    #ffffff;
}

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

.blog-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(16, 19, 22, 0.08);
}

.blog-card img {
  aspect-ratio: 1.55;
  object-fit: cover;
  border-bottom: 1px solid rgba(16, 19, 22, 0.1);
}

.blog-card div {
  padding: 22px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0 0 14px;
  color: var(--logo-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.14;
}

.blog-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.blog-card .card-link {
  margin-top: 18px;
}

.post-shell {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
}

.article-body {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.78;
}

.article-body p {
  margin: 0 0 22px;
}

.article-body h2 {
  margin: 46px 0 16px;
  max-width: 760px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 400;
  line-height: 1.08;
}

.article-body h3 {
  margin: 32px 0 12px;
  font-size: 24px;
  line-height: 1.2;
}

.article-body ul,
.article-body ol {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding-left: 22px;
}

.article-body li {
  padding-left: 4px;
}

.inline-cta {
  margin: 42px 0;
  border: 1px solid rgba(2, 185, 199, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(2, 185, 199, 0.14), transparent 46%),
    linear-gradient(315deg, rgba(208, 0, 143, 0.08), transparent 42%),
    #f7f4ec;
  padding: 26px;
}

.inline-cta h2,
.inline-cta h3 {
  margin-top: 0;
}

.topic-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.topic-links a {
  border: 1px solid rgba(16, 19, 22, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 10px 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 16px;
  text-align: left;
  vertical-align: top;
}

th {
  background: #eef1eb;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

td {
  color: var(--muted);
  line-height: 1.5;
}

td strong {
  color: var(--ink);
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(2, 185, 199, 0.14), transparent 42%),
    linear-gradient(300deg, rgba(208, 0, 143, 0.13), transparent 45%),
    linear-gradient(30deg, rgba(240, 24, 45, 0.08), transparent 35%),
    #0e1115;
  color: rgba(255, 255, 255, 0.76);
  padding: 64px 0 34px;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7), transparent 78%);
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 1.36fr) repeat(4, minmax(142px, 0.72fr));
  gap: 30px;
}

.footer-grid h3,
.footer-grid h4 {
  margin: 0;
  color: var(--white);
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

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

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-logo .brand-symbol {
  box-shadow: none;
}

.footer-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.footer-meta span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.footer-mini {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.fineprint {
  position: relative;
  z-index: 1;
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 13px;
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .mobile-link,
  .button.mobile-link {
    display: inline-flex;
  }

  .button.mobile-link + .button {
    display: none;
  }

  .hero {
    min-height: 720px;
    background:
      linear-gradient(145deg, #111820 0%, #063a45 50%, #381531 70%, #f7f4ec 70%, #f7f4ec 100%);
  }

  .trust-row,
  .service-grid,
  .agency-service-grid,
  .pricing-grid,
  .engagement-grid,
  .steps,
  .proof-strip,
  .image-grid,
  .blog-grid,
  .footer-grid,
  .split,
  .visual-split,
  .visual-split.reverse,
  .contact-wrap,
  .about-hero-grid,
  .madurai-grid,
  .about-client-grid {
    grid-template-columns: 1fr;
  }

  .visual-split.reverse .visual-copy {
    order: 0;
  }

  .panel-grid,
  .detail-grid,
  .agency-process,
  .story-rail,
  .madurai-facts,
  .ops-list {
    grid-template-columns: 1fr;
  }

  .about-sticky {
    position: static;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
}

@media (max-width: 640px) {
  .nav-shell {
    min-height: 66px;
  }

  .brand-name {
    display: none;
  }

  .brand::after {
    display: none;
  }

  .hero-inner {
    width: calc(100vw - 32px);
    max-width: 100%;
    padding-top: 92px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 45px;
    overflow-wrap: break-word;
  }

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

  .system-flow span {
    min-height: 46px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-copy,
  .section-lede {
    max-width: 100%;
    font-size: 16px;
    overflow-wrap: break-word;
  }

  .hero-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .hero-actions .button-secondary,
  .hero-actions .button-dark {
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    line-height: 1.2;
    white-space: normal;
  }

  .hero-system {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .system-head {
    flex-wrap: wrap;
    min-height: 62px;
  }

  .system-head span,
  .system-head strong {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .trust-item span,
  .trust-item strong {
    overflow-wrap: anywhere;
  }

  .section,
  .section-tight {
    padding: 58px 0;
  }

  .about-hero {
    padding: 58px 0;
  }

  .about-hero-visual {
    aspect-ratio: 16 / 9;
  }

  .about-visual-badge {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 14px;
  }

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