:root {
  --ink: #12192f;
  --black: #000000;
  --muted: #666666;
  --mid: #979797;
  --line: #eeeeee;
  --paper: #ffffff;
  --soft: #f6f7f8;
  --white: #ffffff;
  --green: #0088cc;
  --green-2: #0088cc;
  --blue: #12192f;
  --yellow: #FF8F5F;
  --red: #D0102B;
  --shadow: 0 22px 60px rgba(18, 25, 47, .12);
  --shadow-soft: 0 14px 42px rgba(18, 25, 47, .08);
  --shadow-hover: 0 30px 76px rgba(18, 25, 47, .16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Inter, Arial, sans-serif;
}

body {
  margin: 0;
  font-family: inherit;
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 12%, rgba(0, 136, 204, .12), transparent 28%),
    radial-gradient(circle at 8% 28%, rgba(255, 143, 95, .15), transparent 24%),
    linear-gradient(180deg, #ffffff 0, #f8f9fb 420px, var(--paper) 900px),
    var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 28%, rgba(0, 136, 204, .055) 28% 29%, transparent 29% 62%, rgba(255, 143, 95, .07) 62% 63%, transparent 63%),
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,0) 42%);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(0, 136, 204, .28);
  outline-offset: 3px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(238, 238, 238, .86);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(22px) saturate(180%);
  transition: background .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.site-header.scrolled {
  border-color: rgba(18, 25, 47, .08);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 10px 34px rgba(18, 25, 47, .08);
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 80;
  width: 100%;
  height: 3px;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--green), var(--yellow), var(--red));
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 780;
  letter-spacing: 0;
}

.brand-logo {
  width: 188px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-dropdown {
  position: relative;
}

.nav-drop-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 10px 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.nav-dropdown.open .nav-drop-button,
.nav-drop-button:hover {
  background: rgba(0, 136, 204, .09);
  color: var(--ink);
  transform: translateY(-1px);
}

.nav-drop-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 40;
  display: none;
  min-width: 276px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-hover);
  backdrop-filter: blur(22px) saturate(180%);
  animation: menuIn .18s ease both;
}

.nav-dropdown.open .nav-drop-menu {
  display: grid;
}

.nav-drop-menu a {
  border-radius: 8px;
  padding: 11px 12px;
}

.nav-drop-menu a:hover {
  background: rgba(0, 136, 204, .08);
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(0, 136, 204, .09);
  color: var(--ink);
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), #0a62a0);
  color: white;
  font-weight: 750;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(0, 136, 204, .22);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 136, 204, .28);
}

.button:active {
  transform: translateY(0) scale(.98);
}

.button.secondary {
  background: transparent;
  color: var(--blue);
  border-color: rgba(18, 25, 47, .22);
  box-shadow: none;
}

.button.secondary:hover {
  border-color: rgba(0, 136, 204, .38);
  background: rgba(0, 136, 204, .08);
  box-shadow: 0 12px 28px rgba(18, 25, 47, .08);
}

.button.light {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
}

.button.light.ghost {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, .48);
  box-shadow: none;
}

.section {
  padding: 84px 0;
}

.section.compact {
  padding: 54px 0;
}

.band {
  background:
    linear-gradient(135deg, rgba(238,238,238,.74), rgba(255,255,255,.92)),
    var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-2);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 850;
}

h1, h2, h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 820px;
  font-size: clamp(44px, 7vw, 88px);
}

h2 {
  max-width: 760px;
  font-size: clamp(32px, 4vw, 54px);
}

h3 {
  font-size: 23px;
}

p {
  margin: 0;
}

.lead {
  max-width: 690px;
  color: var(--muted);
  font-size: 20px;
}

.hero {
  padding: 86px 0 36px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 42px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.hero-copy h1 {
  background: linear-gradient(135deg, var(--ink) 0 62%, var(--green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(238, 238, 238, .9);
  box-shadow: 0 14px 38px rgba(18, 25, 47, .06);
  backdrop-filter: blur(18px) saturate(150%);
}

.proof-strip div {
  padding: 18px;
  background: rgba(255, 255, 255, .8);
  transition: background .2s ease, transform .2s ease;
}

.proof-strip div:hover {
  background: rgba(255, 255, 255, .96);
  transform: translateY(-1px);
}

.proof-strip div:nth-child(1) strong {
  color: var(--green);
}

.proof-strip div:nth-child(2) strong {
  color: var(--red);
}

.proof-strip div:nth-child(3) strong {
  color: var(--yellow);
}

.proof-strip strong {
  display: block;
  font-size: 25px;
}

.proof-strip span {
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  display: grid;
  gap: 16px;
  align-content: start;
  transform: translate3d(0, calc(var(--hero-lift, 0px) * -1), 0);
  transition: transform .18s ease-out;
}

.portrait-panel {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7f8f5;
  box-shadow: var(--shadow-hover);
  transform: perspective(1200px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition: transform .22s ease, box-shadow .22s ease;
}

.portrait-panel::after,
.profile-panel.has-photo::after,
.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(130deg, rgba(255,255,255,.22), transparent 34%, transparent 72%, rgba(255,255,255,.1));
  opacity: .8;
}

.portrait-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.image-caption {
  display: grid;
  gap: 2px;
  padding: 14px 4px 0;
}

.image-caption strong {
  font-size: 18px;
}

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

.workflow-card {
  position: relative;
  width: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,247,248,.96));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px) saturate(150%);
}

.workflow-step {
  transition: background .2s ease, transform .2s ease;
}

.workflow-step:hover {
  background: rgba(0, 136, 204, .055);
  transform: translateX(3px);
}

.workflow-card h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
}

.workflow-step {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 10px;
  align-items: start;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.live-indicator {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(0, 136, 204, .35);
  animation: livePulse 2.4s ease-out infinite;
}

.workflow-card-live .workflow-step {
  opacity: .46;
  animation: workflowFocus 8s ease-in-out infinite;
}

.workflow-card-live .workflow-step:nth-of-type(1) {
  animation-delay: 0s;
}

.workflow-card-live .workflow-step:nth-of-type(2) {
  animation-delay: 2s;
}

.workflow-card-live .workflow-step:nth-of-type(3) {
  animation-delay: 4s;
}

.workflow-card-live .workflow-step:nth-of-type(4) {
  animation-delay: 6s;
}

.workflow-card-live .workflow-step .dot {
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}

@keyframes livePulse {
  70% {
    box-shadow: 0 0 0 9px rgba(0, 136, 204, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 136, 204, 0);
  }
}

@keyframes workflowFocus {
  0%, 20% {
    opacity: 1;
    background: rgba(0, 136, 204, .08);
    transform: translateX(4px);
  }
  25%, 100% {
    opacity: .46;
    background: transparent;
    transform: translateX(0);
  }
}

.dot {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 136, 204, .1);
  color: var(--green);
  font-weight: 850;
}

.step-time {
  color: var(--muted);
  font-size: 12px;
}

.journey-stepper-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-next-step {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--blue);
  font-size: 14px;
  font-weight: 760;
}

.split {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 42px;
  align-items: start;
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.section-head .button {
  width: fit-content;
}

.value-grid .card h3 {
  min-height: 2.1em;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

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

.card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, var(--shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.card::before,
.price-card::before,
.plain-example::before,
.mini::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--yellow), var(--red));
}

.card.subtle {
  background: rgba(255, 255, 255, .68);
  backdrop-filter: blur(18px) saturate(150%);
}

.card.shadow {
  box-shadow: var(--shadow);
}

.card:hover,
.mini:hover,
.plain-example:hover,
.workflow-box:hover,
.article-cta:hover,
.case-block:hover,
.service-row:hover,
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 136, 204, .28);
  box-shadow: var(--shadow-hover);
}

.card p,
.mini p,
.price-card p,
.profile-text {
  color: var(--muted);
}

.card h3,
.price-card h3 {
  margin-bottom: 10px;
}

.icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 8px;
  background: rgba(0, 136, 204, .1);
  color: var(--green);
  font-weight: 900;
  transition: transform .22s ease, background .22s ease, color .22s ease;
}

.card:hover .icon,
.price-card:hover .icon {
  transform: scale(1.06);
  background: var(--green);
  color: white;
}

.icon::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  border: 2px solid currentColor;
  border-radius: 6px;
}

.icon-assistant::before {
  border-radius: 50%;
  box-shadow: 9px 9px 0 -5px currentColor, -9px 9px 0 -5px currentColor;
}

.icon-agent::before {
  border-radius: 5px;
  background:
    linear-gradient(currentColor, currentColor) 50% 0 / 2px 100% no-repeat,
    linear-gradient(currentColor, currentColor) 0 50% / 100% 2px no-repeat;
}

.icon-board::before {
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, currentColor 0 3px, transparent 4px),
    radial-gradient(circle at 28% 30%, currentColor 0 2px, transparent 3px),
    radial-gradient(circle at 72% 30%, currentColor 0 2px, transparent 3px),
    radial-gradient(circle at 50% 76%, currentColor 0 2px, transparent 3px);
}

.icon-drift::before {
  border-radius: 50%;
  border-style: dashed;
}

.icon-time::before {
  border-radius: 50%;
  background: linear-gradient(currentColor, currentColor) 50% 22% / 2px 9px no-repeat, linear-gradient(currentColor, currentColor) 50% 50% / 8px 2px no-repeat;
}

.icon-quality::before {
  transform: rotate(45deg);
  border-width: 0 3px 3px 0;
  border-radius: 0;
  width: 12px;
  height: 22px;
}

.icon-decision::before {
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-row {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 160px 1fr 156px;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--green), var(--yellow));
}

.service-row strong {
  font-size: 18px;
}

.pill {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0, 136, 204, .1);
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset;
}

.method {
  counter-reset: method;
  display: grid;
  gap: 12px;
}

.method li {
  position: relative;
  overflow: hidden;
  counter-increment: method;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  list-style: none;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.method li:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 136, 204, .28);
  box-shadow: var(--shadow-hover);
}

.method li::before {
  content: counter(method);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: white;
  font-weight: 850;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.product-tile {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 218px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.product-tile::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--yellow), var(--red));
}

.product-tile.featured {
  border-color: rgba(0, 136, 204, .34);
  background: linear-gradient(180deg, rgba(0,136,204,.08), rgba(255,255,255,.94));
}

.product-tile strong {
  font-size: 20px;
  line-height: 1.12;
}

.product-tile p {
  color: var(--muted);
  font-size: 14px;
}

.product-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 136, 204, .34);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-hover);
}

.price-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.price-card.shadow {
  border-color: rgba(0, 136, 204, .34);
  background:
    linear-gradient(180deg, rgba(0,136,204,.075), rgba(255,255,255,.96)),
    var(--white);
}

.price {
  font-size: 34px;
  line-height: 1.05;
  font-weight: 860;
  color: var(--blue);
}

.price small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.outcome-line {
  padding: 12px;
  border: 1px solid rgba(0, 136, 204, .22);
  border-radius: var(--radius);
  background: rgba(0, 136, 204, .08);
  color: var(--ink) !important;
  font-weight: 760;
  transition: background .2s ease, border-color .2s ease;
}

.price-card:hover .outcome-line {
  border-color: rgba(0, 136, 204, .42);
  background: rgba(0, 136, 204, .12);
}

.price-card-action {
  width: 100%;
  margin-top: auto;
}

.price-actions {
  width: min(1180px, calc(100% - 32px));
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px auto 0;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.check-list li {
  list-style: none;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 8px;
}

.check-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

.agent-map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.team-proof {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 22px;
}

.team-proof-heading h2 {
  max-width: 980px;
}

.team-proof-copy {
  display: grid;
  gap: 16px;
}

.team-links {
  grid-template-columns: 1fr;
  margin-bottom: 0;
}

.agent-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.avatar {
  width: 62px;
  height: 62px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-weight: 900;
  background:
    linear-gradient(135deg, rgba(255,255,255,.55), rgba(255,255,255,0)),
    var(--accent, #d6e5dd);
}

.agent-photo {
  width: 92px;
  height: 92px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--soft);
  transition: transform .28s ease, filter .28s ease;
}

.agent-card h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.agent-card p {
  color: var(--muted);
  font-size: 14px;
}

.agent-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 136, 204, .35);
  background: rgba(255, 255, 255, .92);
}

.agent-card:hover .agent-photo {
  transform: scale(1.04);
  filter: saturate(1.04) contrast(1.02);
}

.profile-hero {
  padding: 70px 0 42px;
}

.team-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .85fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.team-hero-title {
  display: grid;
  gap: 14px;
}

.team-hero-title h1 {
  max-width: 820px;
}

.team-hero-summary {
  display: grid;
  gap: 22px;
  padding: 26px;
  border: 1px solid rgba(0, 136, 204, .16);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(235,245,251,.72));
  box-shadow: var(--shadow-soft);
}

.team-hero-summary .lead {
  color: var(--ink);
  font-size: clamp(17px, 1.6vw, 20px);
}

.team-hero-principle {
  display: grid;
  gap: 5px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.team-hero-principle span {
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.team-hero-principle strong {
  color: var(--blue);
  font-size: 16px;
}

.case-hero-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr);
  align-items: center;
}

.case-hero-grid > * {
  min-width: 0;
}

.case-hero-grid .media-frame {
  width: 100%;
  max-width: 560px;
  justify-self: end;
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(260px, .68fr) minmax(0, 1.32fr);
  gap: 40px;
  align-items: center;
}

.profile-panel {
  position: relative;
  min-height: 420px;
  display: grid;
  align-content: end;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 70% 20%, rgba(255,255,255,.75), transparent 24%),
    linear-gradient(145deg, var(--accent, #d6e5dd), #fffdf7 78%);
  box-shadow: var(--shadow-soft);
}

.profile-panel.has-photo {
  padding: 0;
  overflow: hidden;
  align-content: stretch;
  background: #f7f8f5;
  box-shadow: var(--shadow-hover);
  transform: perspective(1200px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition: transform .22s ease, box-shadow .22s ease;
}

.profile-panel.has-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.profile-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 8px;
  background: rgba(18, 25, 47, .68);
  color: white;
  backdrop-filter: blur(12px);
}

.profile-caption p {
  color: rgba(255,255,255,.82);
}

.profile-avatar {
  width: 160px;
  height: 160px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.56);
  color: var(--ink);
  font-size: 48px;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.78);
}

.profile-panel h2 {
  margin-top: 28px;
  font-size: 34px;
}

.profile-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.profile-team-nav {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-top: 8px;
  padding-bottom: 22px;
  scrollbar-width: thin;
}

.profile-team-nav a {
  flex: 0 0 190px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  align-items: center;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.profile-team-nav a:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 136, 204, .32);
  box-shadow: var(--shadow);
}

.profile-team-nav img {
  width: 44px;
  height: 44px;
  border-radius: 9px;
  object-fit: cover;
}

.profile-team-nav span {
  min-width: 0;
}

.profile-team-nav strong,
.profile-team-nav small {
  display: block;
}

.profile-team-nav strong {
  color: var(--blue);
  font-size: 14px;
}

.profile-team-nav small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.25;
}

.founder-story {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 42px;
  align-items: center;
}

.founder-photo {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  position: relative;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-points {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.founder-points span {
  padding: 9px 12px;
  border: 1px solid rgba(0, 136, 204, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: var(--blue);
  font-size: 13px;
  font-weight: 820;
}

.quote {
  padding: 24px;
  border-left: 4px solid var(--red);
  background: var(--white);
  color: var(--ink);
  font-size: 19px;
  box-shadow: var(--shadow-soft);
}

.timeline {
  display: grid;
  gap: 14px;
}

.mini {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.cta {
  padding: 58px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(18,25,47,.96), rgba(0,136,204,.9)),
    var(--blue);
  color: white;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow-hover);
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

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

.plain-example {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.plain-example strong {
  font-size: 18px;
}

.flow-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.flow-line span {
  min-height: 74px;
  display: grid;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(238,238,238,.42));
  color: var(--blue);
  font-size: 14px;
  font-weight: 650;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.flow-line span:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 136, 204, .28);
  box-shadow: var(--shadow-soft);
}

.workflow-diagram {
  display: grid;
  grid-template-columns: 1fr 28px 1fr 28px 1fr 28px 1fr;
  gap: 10px;
  align-items: stretch;
  margin-top: 22px;
}

.workflow-box {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 178px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(18, 25, 47, .06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.workflow-box p {
  color: var(--muted);
  font-size: 14px;
}

.workflow-box.blue {
  border-color: rgba(0, 136, 204, .32);
  background: linear-gradient(180deg, rgba(0,136,204,.1), #fff);
}

.workflow-box.human {
  border: 2px solid var(--yellow);
  background: linear-gradient(180deg, rgba(255,143,95,.16), #fff);
}

.workflow-box.done {
  border-color: rgba(0, 136, 204, .26);
  background: linear-gradient(180deg, rgba(18,25,47,.07), #fff);
}

.workflow-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  font-size: 12px;
  font-weight: 900;
}

.workflow-box.blue .workflow-icon {
  background: var(--green);
}

.workflow-box.human .workflow-icon {
  background: var(--yellow);
  color: var(--ink);
}

.workflow-box.done .workflow-icon {
  background: var(--red);
}

.workflow-arrow {
  display: grid;
  place-items: center;
  color: var(--mid);
  font-size: 24px;
  font-weight: 900;
}

.industry-tabs {
  display: grid;
  gap: 16px;
}

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

.tab-button {
  border: 1px solid rgba(18, 25, 47, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: var(--muted);
  padding: 10px 14px;
  font: inherit;
  font-weight: 780;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.tab-button.active {
  border-color: var(--green);
  background: rgba(0, 136, 204, .1);
  color: var(--ink);
}

.tab-button:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 136, 204, .34);
}

.tab-panel {
  display: none;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 14px 34px rgba(18, 25, 47, .06);
  backdrop-filter: blur(16px) saturate(150%);
}

.tab-panel.active {
  display: grid;
  gap: 14px;
  animation: panelIn .22s ease both;
}

.story-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.story-list li {
  position: relative;
  list-style: none;
  padding-left: 22px;
  color: var(--muted);
}

.story-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.note-line {
  margin-top: 16px;
  color: var(--muted);
  font-weight: 700;
}

.resource-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}

.resource-link {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.resource-link span {
  color: var(--muted);
}

.resource-link:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 136, 204, .35);
  box-shadow: var(--shadow);
}

.faq {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font: inherit;
  font-weight: 820;
  cursor: pointer;
}

.faq-question span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 136, 204, .1);
  color: var(--green);
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq-item.open {
  border-color: rgba(0, 136, 204, .3);
  box-shadow: 0 12px 28px rgba(18, 25, 47, .06);
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-question span {
  background: var(--green);
  color: white;
}

.journey-stepper {
  counter-reset: journey;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: 0 16px 38px rgba(18, 25, 47, .07);
}

.journey-stepper article {
  display: grid;
  gap: 9px;
  padding: 22px;
  background: var(--white);
  transition: transform .22s ease, background .22s ease;
}

.journey-stepper article:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .94);
}

.journey-stepper span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: white;
  font-weight: 900;
}

.journey-stepper small {
  color: var(--green);
  font-weight: 850;
}

.journey-stepper p {
  color: var(--muted);
  font-size: 14px;
}

.saving-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 143, 95, .4);
  border-radius: var(--radius);
  background: rgba(255, 143, 95, .12);
}

.saving-badge strong {
  font-size: 20px;
}

.saving-badge span {
  color: var(--muted);
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.day-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.day-card h3 {
  margin-bottom: 16px;
}

.day-card.before {
  border-color: rgba(208, 16, 43, .24);
  background: linear-gradient(180deg, rgba(208,16,43,.08), #fff);
}

.day-card.after {
  border-color: rgba(0, 136, 204, .28);
  background: linear-gradient(180deg, rgba(0,136,204,.1), #fff);
}

.org-chart {
  display: grid;
  justify-items: center;
}

.org-box {
  display: grid;
  gap: 4px;
  min-width: 160px;
  padding: 14px;
  border: 1px solid rgba(0, 136, 204, .2);
  border-radius: var(--radius);
  background: rgba(235, 245, 251, .92);
  color: var(--ink);
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.org-box:hover {
  transform: translateY(-2px);
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.org-box small {
  color: var(--muted);
  font-weight: 700;
}

.org-box.founder {
  grid-template-columns: 64px 1fr;
  align-items: center;
  width: min(420px, 100%);
  background: var(--blue);
  color: white;
  text-align: left;
}

.org-box.founder small {
  color: rgba(255,255,255,.72);
}

.org-box.founder img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
}

.org-lines {
  width: min(78%, 850px);
  height: 52px;
  border-left: 2px solid rgba(18, 25, 47, .18);
  border-bottom: 2px solid rgba(18, 25, 47, .18);
  border-right: 2px solid rgba(18, 25, 47, .18);
}

.org-children {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.org-children .org-box {
  min-width: 0;
  grid-template-rows: 58px auto;
  justify-items: center;
  align-content: start;
  padding: 12px 8px 14px;
}

.org-children .org-box img {
  width: 58px;
  height: 58px;
  border: 2px solid rgba(255,255,255,.9);
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(18, 25, 47, .12);
  transition: transform .2s ease;
}

.org-children .org-box:hover img {
  transform: scale(1.05);
}

.org-children .org-box span {
  display: grid;
  gap: 4px;
}

.day-timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.day-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line);
}

.day-timeline article {
  position: relative;
  width: calc(50% - 28px);
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(18, 25, 47, .06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.day-timeline article:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 136, 204, .28);
  box-shadow: var(--shadow-hover);
}

.day-timeline article:nth-child(even) {
  margin-left: calc(50% + 28px);
}

.day-timeline article::after {
  content: "";
  position: absolute;
  top: 24px;
  right: -35px;
  width: 12px;
  height: 12px;
  border: 3px solid var(--green);
  border-radius: 50%;
  background: var(--white);
}

.day-timeline article:nth-child(even)::after {
  left: -35px;
  right: auto;
}

.day-timeline time {
  color: var(--blue);
  font-weight: 900;
}

.day-timeline p {
  color: var(--muted);
}

.human-check {
  border-color: rgba(255, 143, 95, .48) !important;
  background: linear-gradient(180deg, rgba(255,143,95,.12), #fff) !important;
}

.agent-designer {
  display: grid;
  grid-template-columns: .98fr 1.02fr;
  gap: 28px;
  align-items: start;
}

.agent-designer > .section-head {
  grid-column: 1 / -1;
}

.designer-panel,
.agent-result {
  display: grid;
  gap: 18px;
}

.designer-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(150%);
}

.designer-step {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
}

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

.step-badge {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: white;
  font-weight: 900;
}

.role-options,
.task-list,
.detail-grid {
  display: grid;
  gap: 10px;
}

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

.role-option,
.task-choice {
  border: 1px solid rgba(18, 25, 47, .16);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 760;
}

.role-option {
  padding: 13px 14px;
  text-align: left;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.role-option.active,
.role-option:hover {
  border-color: rgba(0, 136, 204, .42);
  background: rgba(0, 136, 204, .1);
  transform: translateY(-1px);
}

.task-choice {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.task-choice:has(input:checked) {
  border-color: rgba(0, 136, 204, .36);
  background: rgba(0, 136, 204, .075);
}

.task-choice:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 136, 204, .34);
}

.task-choice input {
  accent-color: var(--green);
}

.task-choice small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

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

.generated-agent-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(0, 136, 204, .24);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(0,136,204,.08), rgba(255,255,255,.98)),
    var(--white);
  box-shadow: var(--shadow);
  animation: panelIn .22s ease both;
}

.generated-agent-card h3 {
  font-size: clamp(32px, 4vw, 52px);
}

.generated-agent-card strong {
  font-size: 20px;
}

.generated-agent-card p {
  color: var(--muted);
}

.generated-agent-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.generated-agent-meta div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .76);
}

.generated-agent-meta small,
.agent-label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.generated-agent-meta span {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-weight: 850;
}

.article-page {
  padding: 72px 0 86px;
}

.article-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 820px);
  gap: 48px;
  align-items: start;
}

.article-aside {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 14px 34px rgba(18, 25, 47, .06);
}

.article-aside p {
  color: var(--muted);
}

.article-content {
  display: grid;
  gap: 22px;
}

.article-content h1 {
  max-width: none;
  font-size: clamp(42px, 5vw, 72px);
}

.article-content h2 {
  max-width: none;
  margin-top: 18px;
  font-size: clamp(26px, 3vw, 38px);
}

.article-content p {
  color: var(--muted);
  font-size: 18px;
}

.article-content .lead {
  color: var(--ink);
  font-size: 21px;
}

.article-cta,
.case-block {
  display: grid;
  gap: 14px;
  margin-top: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(18, 25, 47, .06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

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

.case-block p {
  color: var(--muted);
}

.decision-tree {
  display: grid;
  gap: 14px;
}

.decision-node {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.86);
}

.decision-node strong {
  color: var(--green);
}

.decision-tree.interactive {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px) saturate(150%);
}

.decision-question {
  display: grid;
  gap: 12px;
}

.decision-question strong {
  font-size: 22px;
}

.decision-question button,
.reset-link {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(18, 25, 47, .16);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  text-align: left;
  font: inherit;
  font-weight: 760;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.decision-question button:hover,
.reset-link:hover {
  border-color: var(--green);
  background: rgba(0, 136, 204, .08);
  transform: translateY(-1px);
}

.decision-result {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(0, 136, 204, .28);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(0,136,204,.1), #fff);
  animation: panelIn .22s ease both;
}

.decision-result p {
  color: var(--muted);
}

.hidden {
  display: none !important;
}

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

.contact-page {
  padding: 76px 0 92px;
}

.contact-panel {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding: clamp(30px, 6vw, 72px);
  border: 1px solid rgba(238, 238, 238, .88);
  border-radius: 32px 32px var(--radius) var(--radius);
  background:
    linear-gradient(180deg, rgba(246, 247, 248, .96), rgba(255, 255, 255, .92)),
    var(--soft);
  box-shadow: var(--shadow-hover);
}

.contact-panel > * {
  min-width: 0;
}

.contact-intro {
  position: sticky;
  top: 112px;
  margin-bottom: 0;
}

.contact-intro h1 {
  max-width: 100%;
  font-size: clamp(34px, 4vw, 52px);
  overflow-wrap: anywhere;
  color: var(--blue);
}

.contact-intro > .lead {
  max-width: 100%;
  font-size: clamp(17px, 1.6vw, 20px);
}

.contact-form-large {
  position: relative;
  z-index: 1;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(238, 238, 238, .92);
  border-radius: 24px;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px) saturate(150%);
}

.contact-aside {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.contact-aside article {
  padding: 18px;
  border: 1px solid rgba(0, 136, 204, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .66);
}

.contact-aside strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 18px;
}

.contact-aside p {
  color: var(--muted);
}

.form-grid {
  display: grid;
  gap: 18px;
}

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

.contact-form button:disabled {
  cursor: wait;
  opacity: .72;
}

.form-status {
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  border: 1px solid rgba(0, 136, 204, .24);
  border-radius: var(--radius);
  background: rgba(0, 136, 204, .08);
  color: var(--ink);
}

.form-status[hidden] {
  display: none;
}

.form-status[data-type="error"] {
  border-color: rgba(208, 16, 43, .28);
  background: rgba(208, 16, 43, .08);
}

.form-status span {
  color: var(--muted);
}

.field {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.86);
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--green);
  outline: 3px solid rgba(0, 136, 204, .14);
}

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

.contact-form-large .field {
  gap: 6px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 820;
}

.contact-form-large .field input,
.contact-form-large .field textarea,
.contact-form-large .field select {
  min-height: 46px;
  border: 1px solid rgba(238, 238, 238, .72);
  border-radius: 14px;
  background: rgba(255,255,255,.96);
  padding: 10px 14px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 520;
  box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
}

.contact-form-large .field select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--blue) 50%) calc(100% - 24px) 50% / 8px 8px no-repeat,
    linear-gradient(135deg, var(--blue) 50%, transparent 50%) calc(100% - 18px) 50% / 8px 8px no-repeat,
    rgba(255,255,255,.96);
}

.contact-form-large .field input:focus,
.contact-form-large .field textarea:focus,
.contact-form-large .field select:focus {
  box-shadow: 0 0 0 6px rgba(0, 136, 204, .06);
}

.contact-form-large .field textarea {
  min-height: 96px;
}

.consent-line {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--blue);
  font-weight: 820;
  font-size: 13px;
}

.consent-line input {
  width: 22px;
  height: 22px;
  margin-top: 3px;
  accent-color: var(--green);
}

.privacy-note,
.contact-direct {
  color: var(--muted);
}

.privacy-note {
  font-size: 14px;
}

.privacy-note a {
  color: var(--green);
  font-weight: 820;
}

.contact-submit {
  width: fit-content;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 15px;
}

.contact-direct {
  margin-top: 2px;
  font-weight: 760;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 50;
  width: min(620px, calc(100% - 32px));
  transform: translateX(-50%);
  display: none;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.cookie-banner.show {
  display: grid;
}

body.cookie-visible {
  padding-bottom: 92px;
}

.cookie-banner p {
  color: var(--muted);
  font-size: 13px;
}

.cookie-banner .button {
  min-height: 38px;
  padding: 9px 14px;
}

.footer a {
  color: var(--green);
  font-weight: 700;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .42s ease, filter .42s ease;
}

.media-frame:hover img {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.02);
}

.wide-media {
  aspect-ratio: 16 / 9;
}

.team-preview-media {
  width: 100%;
  aspect-ratio: 16 / 9.6;
  margin: 0;
  background: linear-gradient(180deg, rgba(238,238,238,.62), rgba(255,255,255,.92));
}

.team-preview-media img {
  object-fit: contain;
  padding: 10px;
}

.cta p {
  max-width: 650px;
  color: rgba(255,255,255,.78);
}

.footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .58s ease, transform .58s ease;
}

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

@keyframes menuIn {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

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

  .workflow-card-live .workflow-step {
    opacity: 1;
    background: transparent;
    transform: none;
  }
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .brand-logo {
    width: 166px;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .nav-drop-menu {
    position: static;
    min-width: 100%;
    margin-top: 6px;
    box-shadow: none;
  }

  .hero-grid,
  .split,
  .profile-grid,
  .team-hero-grid,
  .case-hero-grid,
  .founder-story,
  .contact-panel,
  .cta {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    position: static;
  }

  .hero-visual {
    min-height: 0;
  }

  .grid-3,
  .grid-2,
  .price-grid,
  .product-strip,
  .form-grid.two,
  .team-proof,
  .agent-map,
  .profile-content,
  .explain-grid,
  .resource-links,
  .agent-designer,
  .role-options,
  .detail-grid,
  .generated-agent-meta,
  .flow-line,
  .workflow-diagram,
  .journey-stepper,
  .before-after,
  .org-children,
  .article-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .workflow-arrow {
    transform: rotate(90deg);
    min-height: 22px;
  }

  .decision-node,
  .cookie-banner,
  .saving-badge {
    grid-template-columns: 1fr;
  }

  .saving-badge {
    display: grid;
  }

  .article-aside {
    position: static;
  }

  .cta-actions {
    justify-content: flex-start;
  }

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

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .org-lines {
    display: none;
  }

  .org-children {
    margin-top: 16px;
  }

  .day-timeline::before {
    left: 8px;
  }

  .day-timeline article,
  .day-timeline article:nth-child(even) {
    width: auto;
    margin-left: 28px;
  }

  .day-timeline article::after,
  .day-timeline article:nth-child(even)::after {
    left: -27px;
    right: auto;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 58px 0;
  }

  .hero {
    padding-top: 52px;
  }

  .team-hero-summary {
    padding: 20px;
  }

  .nav-links a {
    padding: 8px 9px;
    font-size: 13px;
  }

  .cta {
    padding: 28px;
  }

  body.cookie-visible {
    padding-bottom: 142px;
  }

  .cookie-banner {
    bottom: 8px;
  }
}
