:root {
  --navy-950: #041126;
  --navy-900: #071b3b;
  --navy-800: #0b2854;
  --navy-700: #123969;
  --blue-600: #3e68ff;
  --blue-500: #5b7cff;
  --cyan-400: #55d6ff;
  --cyan-200: #b9eeff;
  --teal-400: #51e0ca;
  --green-400: #65db9b;
  --orange-400: #ffb36b;
  --violet-400: #a98cff;
  --rose-400: #ff8fb6;
  --ink: #10213d;
  --muted: #62708a;
  --line: #dce5f1;
  --soft: #f3f7fb;
  --white: #fff;
  --shadow-sm: 0 14px 38px rgba(7, 27, 59, .08);
  --shadow-md: 0 24px 70px rgba(7, 27, 59, .13);
  --shadow-lg: 0 34px 100px rgba(4, 17, 38, .22);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
p { margin: 0 0 1.15em; }
h1, h2, h3 { text-wrap: balance; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 108px 0; }
.section-soft { background: var(--soft); }
.section-dark { background: var(--navy-950); color: var(--white); }
.skip-link { position: fixed; top: -100px; left: 18px; z-index: 9999; padding: 10px 16px; background: white; color: var(--navy-950); border-radius: 8px; box-shadow: var(--shadow-sm); }
.skip-link:focus { top: 18px; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  color: white;
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.inner-page .site-header,
.site-header.scrolled {
  background: rgba(4, 17, 38, .94);
  box-shadow: 0 10px 40px rgba(4, 17, 38, .18);
  backdrop-filter: blur(18px);
}
.header-inner { height: 82px; display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: none; }
.brand-mark { width: 42px; height: 42px; }
.brand-name { font-weight: 850; font-size: 25px; line-height: 1; letter-spacing: -.045em; color: white; }
.brand-name span { color: var(--cyan-400); }
.site-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.site-nav a { position: relative; padding: 28px 0; color: rgba(255,255,255,.72); font-size: 14px; font-weight: 700; transition: color .2s ease; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 20px; height: 2px; background: var(--cyan-400); transition: right .2s ease; }
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a[aria-current="page"] { color: white; }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { right: 0; }
.nav-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.18); border-radius: 12px; background: transparent; padding: 9px; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: white; border-radius: 3px; transition: transform .2s ease, opacity .2s ease; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons and common type */
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 23px; border: 1px solid transparent; border-radius: 999px; font-weight: 780; font-size: 15px; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding-inline: 18px; font-size: 13px; }
.button-light { color: white; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); }
.button-light:hover { background: rgba(255,255,255,.15); }
.button-primary { color: var(--navy-950); background: linear-gradient(135deg, var(--cyan-400), #8ae7ff); box-shadow: 0 12px 30px rgba(85,214,255,.25); }
.button-dark { color: white; background: var(--navy-900); box-shadow: 0 12px 28px rgba(7,27,59,.18); }
.button-white { color: var(--navy-950); background: white; }
.button-ghost { color: white; background: transparent; border-color: rgba(255,255,255,.25); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: white; font-weight: 740; }
.text-link span { color: var(--cyan-400); }
.text-arrow { display: inline-flex; align-items: center; gap: 9px; color: var(--navy-800); font-weight: 800; }
.text-arrow span { color: var(--blue-600); transition: transform .2s ease; }
.text-arrow:hover span { transform: translateX(4px); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--cyan-400); text-transform: uppercase; letter-spacing: .16em; font-size: 11px; font-weight: 850; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.eyebrow-blue { color: var(--blue-600); }
.section-heading { margin-bottom: 54px; }
.section-heading h2 { margin: 14px 0 0; max-width: 850px; font-size: clamp(38px, 4.4vw, 58px); line-height: 1.08; letter-spacing: -.048em; }
.section-heading > p, .section-heading.split > p { color: var(--muted); font-size: 17px; }
.section-heading.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: end; }
.section-heading.split > p { margin: 0 0 7px; }
.section-heading.centered { max-width: 900px; margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered h2 { margin-inline: auto; }
.section-heading.centered p { max-width: 720px; margin: 20px auto 0; }
.center-action { margin-top: 42px; text-align: center; }

/* Home hero */
.hero-home { position: relative; min-height: 830px; padding: 170px 0 118px; overflow: hidden; color: white; background: var(--navy-950); }
.hero-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px); background-size: 46px 46px; mask-image: linear-gradient(to bottom, #000 10%, transparent 94%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(28px); pointer-events: none; }
.hero-glow-one { width: 680px; height: 680px; right: -230px; top: -180px; background: rgba(62,104,255,.38); }
.hero-glow-two { width: 430px; height: 430px; left: 26%; bottom: -260px; background: rgba(81,224,202,.16); }
.hero-home-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: 78px; align-items: center; }
.hero-copy h1 { margin: 20px 0 26px; font-size: clamp(54px, 6.6vw, 90px); line-height: .98; letter-spacing: -.065em; }
.hero-copy h1 span { color: var(--cyan-400); }
.hero-copy > p { max-width: 700px; color: rgba(255,255,255,.72); font-size: 20px; line-height: 1.72; }
.hero-actions { margin-top: 37px; display: flex; align-items: center; flex-wrap: wrap; gap: 25px; }
.hero-proof { display: flex; gap: 36px; margin-top: 56px; padding-top: 29px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-proof div { display: grid; }
.hero-proof strong { font-size: 22px; }
.hero-proof span { color: rgba(255,255,255,.54); font-size: 12px; }
.solution-map { --orbit-radius: 214px; --orbit-duration: 54s; position: relative; width: 100%; max-width: 560px; aspect-ratio: 1; margin-inline: auto; }
.map-ring { position: absolute; pointer-events: none; border-radius: 50%; border: 1px solid rgba(85,214,255,.25); }
.ring-one { inset: 10%; box-shadow: 0 0 50px rgba(85,214,255,.06); }
.ring-two { inset: 28%; border-style: dashed; animation: spin 34s linear infinite reverse; }
.map-core { position: absolute; z-index: 3; inset: 36%; display: grid; place-content: center; text-align: center; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #1a467f, #081d40 72%); border: 1px solid rgba(255,255,255,.15); box-shadow: 0 0 0 17px rgba(85,214,255,.03), 0 30px 80px rgba(0,0,0,.35), 0 0 70px rgba(85,214,255,.1); }
.map-core span { color: var(--cyan-400); font-size: 42px; font-weight: 900; letter-spacing: -.08em; }
.map-core small { color: rgba(255,255,255,.52); }
.orbit-track { position: absolute; z-index: 4; inset: 0; animation: orbit-spin var(--orbit-duration) linear infinite; }
.orbit-item { position: absolute; left: 50%; top: 50%; width: 0; height: 0; transform: rotate(var(--angle)) translateX(var(--orbit-radius)); }
.node-orientation { display: block; transform: rotate(var(--counter-angle)); }
.map-node { position: absolute; min-width: 164px; display: flex; align-items: center; gap: 10px; padding: 11px 13px; transform: translate(-50%, -50%); border-radius: 15px; border: 1px solid rgba(255,255,255,.15); background: rgba(9,31,67,.82); backdrop-filter: blur(14px); box-shadow: 0 18px 42px rgba(0,0,0,.3); animation: orbit-counter-spin var(--orbit-duration) linear infinite; transition: border-color .22s ease, background .22s ease, box-shadow .22s ease; }
.orbit-item:hover .map-node, .orbit-item:focus-visible .map-node { border-color: rgba(85,214,255,.7); background: rgba(13,48,96,.96); box-shadow: 0 20px 48px rgba(0,0,0,.38), 0 0 28px rgba(85,214,255,.16); }
.orbit-item:focus-visible { outline: none; }
.map-node b { width: 34px; height: 34px; flex: 0 0 34px; display: grid; place-items: center; border-radius: 10px; color: var(--cyan-400); background: rgba(85,214,255,.12); }
.map-node strong, .map-node small { display: block; white-space: nowrap; }
.map-node strong { color: white; font-size: 13px; }
.map-node small { color: rgba(255,255,255,.54); font-size: 9px; }
.node-manifest .map-node b { color: #ffbd78; background: rgba(255,176,89,.13); }
.node-labor .map-node b { color: #c9b6ff; background: rgba(160,126,255,.15); }
.node-invoice .map-node b { color: #ff9fbd; background: rgba(255,117,161,.14); }
.solution-map:hover .orbit-track, .solution-map:hover .map-node, .solution-map:focus-within .orbit-track, .solution-map:focus-within .map-node { animation-play-state: paused; }
.audience-strip { border-bottom: 1px solid var(--line); }
.audience-strip .container { min-height: 90px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 24px; color: var(--muted); }
.audience-strip span { text-transform: uppercase; letter-spacing: .16em; font-size: 10px; font-weight: 850; }
.audience-strip strong { color: var(--ink); font-size: 13px; }
.audience-strip i { width: 4px; height: 4px; border-radius: 50%; background: var(--cyan-400); }

/* Service cards */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 310px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-sm); border-color: var(--cyan-200); }
.service-card > span { position: absolute; right: 25px; top: 22px; color: #a3afc2; font-size: 12px; font-weight: 850; }
.service-icon { width: 58px; height: 58px; margin-bottom: 52px; display: grid; place-items: center; border-radius: 18px; background: var(--soft); color: var(--blue-600); font-size: 25px; font-weight: 800; }
.service-card h3 { margin: 0 0 12px; font-size: 21px; line-height: 1.25; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; }

/* Product cards */
.products-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.product-card { min-width: 0; overflow: hidden; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; box-shadow: 0 1px 0 rgba(7,27,59,.02); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #c9d8eb; }
.product-card-featured { grid-column: span 2; }
.product-card-image { height: 210px; padding: 18px; background: linear-gradient(145deg, #eaf1fb, #f9fbfe); border-bottom: 1px solid var(--line); }
.product-card-image img { width: 100%; height: 100%; object-fit: contain; border-radius: 10px; box-shadow: 0 14px 32px rgba(7,27,59,.15); background: white; }
.product-card-visual { min-height: 210px; display: grid; place-content: center; text-align: center; background: radial-gradient(circle at 70% 20%, rgba(85,214,255,.22), transparent 32%), linear-gradient(135deg, var(--navy-950), var(--navy-800)); color: white; }
.product-card-visual span { display: block; color: var(--cyan-400); font-size: 54px; font-weight: 900; }
.product-card-visual strong { font-size: 21px; }
.product-card-visual small { color: rgba(255,255,255,.56); }
.product-card-body { flex: 1; display: flex; flex-direction: column; padding: 26px; }
.product-meta { display: flex; align-items: center; gap: 9px; color: var(--muted); text-transform: uppercase; letter-spacing: .09em; font-size: 10px; font-weight: 850; }
.product-code { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 10px; color: var(--blue-600); background: #edf2ff; font-size: 14px; }
.product-card[data-accent="cyan"] .product-code { color: #087d9d; background: #e4faff; }
.product-card[data-accent="teal"] .product-code { color: #087b70; background: #e4fbf7; }
.product-card[data-accent="green"] .product-code { color: #18824a; background: #e7f9ee; }
.product-card[data-accent="orange"] .product-code { color: #aa5d14; background: #fff1e4; }
.product-card[data-accent="violet"] .product-code { color: #6641c3; background: #f0ebff; }
.product-card[data-accent="rose"] .product-code { color: #b54169; background: #ffedf3; }
.product-card h3 { margin: 18px 0 9px; font-size: 27px; line-height: 1.1; letter-spacing: -.035em; }
.product-card p { margin: 0 0 18px; color: var(--muted); font-size: 14px; }
.product-card ul { margin: 0 0 24px; padding: 0; display: grid; gap: 7px; list-style: none; color: var(--ink); font-size: 13px; }
.product-card li::before { content: "✓"; margin-right: 8px; color: var(--blue-600); font-weight: 900; }
.card-actions { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.external-mini { color: var(--muted); font-size: 12px; font-weight: 750; }
.products-grid-overview .product-card { min-height: 100%; }

/* Process */
.process-layout { display: grid; grid-template-columns: .86fr 1.14fr; gap: 90px; align-items: center; }
.process-intro h2 { margin: 14px 0 20px; font-size: clamp(40px, 4.3vw, 58px); line-height: 1.08; letter-spacing: -.05em; }
.process-intro p { color: var(--muted); font-size: 17px; }
.process-intro .button { margin-top: 18px; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 58px 1fr; gap: 20px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.process-list li > span { color: var(--blue-600); font-weight: 850; }
.process-list h3 { margin: 0 0 4px; font-size: 20px; }
.process-list p { margin: 0; color: var(--muted); font-size: 14px; }

/* About preview */
.about-preview { position: relative; overflow: hidden; color: white; background: var(--navy-950); }
.about-preview::after { content: ""; position: absolute; width: 700px; height: 700px; right: -250px; bottom: -380px; border-radius: 50%; background: rgba(62,104,255,.23); filter: blur(20px); }
.about-preview-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center; }
.about-copy h2 { margin: 14px 0 20px; font-size: clamp(40px, 4.5vw, 60px); line-height: 1.06; letter-spacing: -.05em; }
.about-copy p { color: rgba(255,255,255,.68); font-size: 17px; }
.about-copy .button { margin-top: 16px; }
.team-mini { display: grid; gap: 16px; }
.team-mini article { display: grid; grid-template-columns: 96px 1fr; gap: 20px; align-items: center; padding: 18px; border-radius: 21px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.06); backdrop-filter: blur(12px); }
.team-mini img { width: 96px; height: 96px; object-fit: cover; border-radius: 17px; filter: grayscale(1); }
.team-mini strong, .team-mini span { display: block; }
.team-mini strong { font-size: 18px; }
.team-mini span { color: rgba(255,255,255,.55); font-size: 12px; }

/* Generic inner hero */
.page-hero, .product-hero, .legal-hero { position: relative; overflow: hidden; color: white; background: var(--navy-950); }
.page-hero::before, .product-hero::before, .legal-hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 46px 46px; mask-image: linear-gradient(to bottom, #000 10%, transparent 100%); }
.page-hero { padding: 160px 0 100px; }
.page-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: 85px; align-items: center; }
.page-hero h1 { margin: 20px 0 26px; font-size: clamp(52px, 6vw, 78px); line-height: 1.02; letter-spacing: -.06em; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 19px; line-height: 1.72; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; color: rgba(255,255,255,.5); font-size: 12px; }
.breadcrumb a:hover { color: white; }
.page-hero-panel { position: relative; min-height: 360px; display: grid; place-content: center; text-align: center; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,.12); background: radial-gradient(circle at 70% 20%, rgba(85,214,255,.22), transparent 35%), rgba(255,255,255,.055); box-shadow: var(--shadow-lg); }
.page-hero-panel strong { font-size: 110px; line-height: .9; color: var(--cyan-400); letter-spacing: -.08em; }
.page-hero-panel > span:not(.panel-kicker) { max-width: 310px; margin: 18px auto; color: rgba(255,255,255,.65); }
.panel-kicker { color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .18em; font-size: 10px; font-weight: 850; }
.panel-tags { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; }
.panel-tags span { padding: 7px 10px; border-radius: 999px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.72); font-size: 10px; }

/* Relationship band */
.relation-section { overflow: hidden; }
.relation-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: center; }
.relation-grid h2 { margin: 15px 0 17px; font-size: clamp(38px, 4vw, 56px); line-height: 1.08; letter-spacing: -.05em; }
.relation-grid p { color: rgba(255,255,255,.65); }
.relation-flow { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.relation-flow > div { width: 145px; min-height: 140px; padding: 20px 15px; display: grid; align-content: center; text-align: center; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.05); }
.relation-flow b { color: var(--cyan-400); font-size: 11px; }
.relation-flow strong { margin: 8px 0 2px; }
.relation-flow span { color: rgba(255,255,255,.5); font-size: 11px; }
.relation-flow i { color: var(--cyan-400); font-style: normal; }

/* Product hero and details */
.product-hero { padding: 155px 0 90px; }
.product-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 74px; align-items: center; }
.product-title-row { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .12em; font-size: 11px; font-weight: 850; }
.product-hero-code { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; color: var(--cyan-400); background: rgba(85,214,255,.12); font-size: 19px; }
.product-hero[data-accent="teal"] .product-hero-code { color: var(--teal-400); background: rgba(81,224,202,.12); }
.product-hero[data-accent="green"] .product-hero-code { color: var(--green-400); background: rgba(101,219,155,.12); }
.product-hero[data-accent="orange"] .product-hero-code { color: var(--orange-400); background: rgba(255,179,107,.12); }
.product-hero[data-accent="violet"] .product-hero-code { color: var(--violet-400); background: rgba(169,140,255,.12); }
.product-hero[data-accent="rose"] .product-hero-code { color: var(--rose-400); background: rgba(255,143,182,.12); }
.product-hero h1 { margin: 22px 0 5px; font-size: clamp(56px, 7vw, 88px); line-height: .98; letter-spacing: -.065em; }
.product-subtitle { color: var(--cyan-400); font-size: 19px; font-weight: 750; }
.product-intro { max-width: 680px; color: rgba(255,255,255,.7); font-size: 17px; }
.product-hero-image { margin: 0; padding: 20px; border-radius: var(--radius-md); background: rgba(255,255,255,.075); border: 1px solid rgba(255,255,255,.12); box-shadow: var(--shadow-lg); transform: rotate(1deg); }
.product-hero-image img { width: 100%; max-height: 470px; object-fit: contain; border-radius: 12px; background: white; }
.product-hero-image figcaption { margin-top: 10px; color: rgba(255,255,255,.45); font-size: 11px; }
.vetlex-browser { overflow: hidden; border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-lg); transform: rotate(1deg); }
.browser-bar { height: 45px; padding: 0 16px; display: flex; align-items: center; gap: 7px; color: #8792a7; background: #e9eef5; }
.browser-bar i { width: 9px; height: 9px; border-radius: 50%; background: #bcc5d3; }
.browser-bar span { margin-left: 10px; font-size: 10px; }
.browser-content { padding: 44px; text-align: center; color: var(--ink); background: radial-gradient(circle at 80% 0, #dff8ff, transparent 32%), white; }
.browser-logo { color: var(--navy-900); font-size: 40px; font-weight: 900; letter-spacing: -.06em; }
.browser-content h2 { margin: 4px 0 28px; color: var(--muted); font-size: 18px; }
.browser-search { display: flex; justify-content: space-between; align-items: center; padding: 14px 17px; border: 1px solid var(--line); border-radius: 13px; color: #8895a8; font-size: 12px; }
.browser-tiles { margin-top: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.browser-tiles span { padding: 13px 10px; border-radius: 12px; color: var(--navy-800); background: var(--soft); font-size: 11px; font-weight: 750; }
.workflow-section { padding-bottom: 85px; }
.workflow-list { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5,1fr); list-style: none; counter-reset: none; }
.workflow-list li { position: relative; min-height: 135px; padding: 22px 18px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.workflow-list li:not(:last-child)::after { content: "→"; position: absolute; right: -9px; top: 50%; z-index: 3; width: 18px; height: 18px; display: grid; place-items: center; color: var(--blue-600); background: white; transform: translateY(-50%); }
.workflow-list span, .workflow-list strong { display: block; }
.workflow-list span { color: var(--blue-600); font-size: 11px; font-weight: 850; }
.workflow-list strong { margin-top: 20px; font-size: 15px; line-height: 1.3; }
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.feature-card { min-height: 235px; padding: 27px; border-radius: var(--radius-md); border: 1px solid var(--line); background: white; transition: transform .2s ease, box-shadow .2s ease; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.feature-card h3 { margin: 0 0 12px; font-size: 20px; }
.feature-card p { margin: 0; color: var(--muted); font-size: 14px; }
.detail-split { display: grid; grid-template-columns: .78fr 1.22fr; gap: 74px; align-items: center; }
.detail-split h2 { margin: 15px 0 18px; font-size: clamp(38px, 4vw, 54px); line-height: 1.08; letter-spacing: -.05em; }
.detail-split p { color: var(--muted); }
.check-list { margin: 24px 0 0; padding: 0; display: grid; gap: 10px; list-style: none; }
.check-list li { padding: 11px 14px; border-radius: 12px; background: var(--soft); font-size: 14px; font-weight: 700; }
.check-list li::before { content: "✓"; margin-right: 9px; color: var(--blue-600); }
.detail-image { margin: 0; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--soft); box-shadow: var(--shadow-sm); }
.detail-image img { width: 100%; max-height: 560px; object-fit: contain; border-radius: 12px; background: white; }
.detail-image figcaption { margin-top: 11px; color: var(--muted); font-size: 11px; }
.legal-visual { min-height: 430px; display: grid; place-content: center; text-align: center; border-radius: var(--radius-lg); color: white; background: radial-gradient(circle at 70% 25%, rgba(85,214,255,.3), transparent 35%), var(--navy-950); box-shadow: var(--shadow-md); }
.legal-visual span { color: var(--cyan-400); font-size: 76px; font-weight: 900; }
.legal-visual strong { font-size: 36px; line-height: 1.15; letter-spacing: -.04em; }
.integration-section { color: white; background: linear-gradient(135deg, var(--navy-950), #0c2d5e); }
.integration-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 80px; align-items: center; }
.integration-grid h2 { margin: 15px 0 18px; font-size: clamp(38px, 4vw, 54px); line-height: 1.08; letter-spacing: -.05em; }
.integration-grid p { color: rgba(255,255,255,.65); }
.integration-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.integration-tags span { padding: 12px 16px; border-radius: 999px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.06); color: rgba(255,255,255,.82); font-size: 13px; font-weight: 700; }

/* About page */
.about-portrait-pair { position: relative; min-height: 390px; }
.about-portrait-pair img { position: absolute; width: 270px; height: 270px; object-fit: cover; border-radius: 34px; filter: grayscale(1); border: 8px solid rgba(255,255,255,.08); box-shadow: var(--shadow-lg); }
.about-portrait-pair img:first-child { left: 5%; top: 0; transform: rotate(-5deg); }
.about-portrait-pair img:nth-child(2) { right: 3%; bottom: 5px; transform: rotate(5deg); }
.about-portrait-pair span { position: absolute; left: 37%; top: 43%; padding: 10px 16px; border-radius: 999px; color: var(--navy-950); background: var(--cyan-400); font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; transform: rotate(-3deg); }
.story-grid { display: grid; grid-template-columns: .68fr 1.32fr; gap: 90px; align-items: center; }
.story-year { min-height: 380px; padding: 40px; display: grid; align-content: end; border-radius: var(--radius-lg); color: white; background: radial-gradient(circle at 70% 20%, rgba(85,214,255,.25), transparent 36%), var(--navy-950); }
.story-year strong { color: var(--cyan-400); font-size: 92px; line-height: .9; letter-spacing: -.08em; }
.story-year span { margin-top: 24px; color: rgba(255,255,255,.65); }
.story-copy h2 { margin: 14px 0 20px; font-size: clamp(40px,4.5vw,58px); line-height: 1.08; letter-spacing: -.05em; }
.story-copy p { color: var(--muted); font-size: 17px; }
.bio-card { margin-bottom: 28px; padding: 32px; display: grid; grid-template-columns: 300px 1fr; gap: 46px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; box-shadow: var(--shadow-sm); }
.bio-card-reverse .bio-photo { order: 2; }
.bio-card-reverse .bio-text { order: 1; }
.bio-photo img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 24px; filter: grayscale(1); }
.bio-photo > div { padding: 20px 6px; }
.bio-photo strong, .bio-photo span, .bio-photo a { display: block; }
.bio-photo strong { font-size: 23px; }
.bio-photo span { color: var(--muted); font-size: 12px; }
.bio-photo a { margin-top: 8px; color: var(--blue-600); font-size: 13px; font-weight: 750; }
.bio-text { columns: 2; column-gap: 34px; }
.bio-text p { break-inside: avoid; color: #465673; font-size: 14px; }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.values-grid article { min-height: 250px; padding: 26px; border-top: 3px solid var(--cyan-400); background: var(--soft); border-radius: 0 0 var(--radius-md) var(--radius-md); }
.values-grid span { color: var(--blue-600); font-size: 11px; font-weight: 850; }
.values-grid h3 { margin: 42px 0 10px; font-size: 21px; }
.values-grid p { margin: 0; color: var(--muted); font-size: 14px; }

/* Contact */
.contact-hero-card { padding: 38px; display: grid; gap: 8px; border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius-lg); background: rgba(255,255,255,.055); box-shadow: var(--shadow-lg); }
.contact-hero-card > span { color: var(--cyan-400); text-transform: uppercase; letter-spacing: .12em; font-size: 11px; font-weight: 850; }
.contact-hero-card strong { margin: 18px 0; font-size: 25px; line-height: 1.35; }
.contact-hero-card a { color: rgba(255,255,255,.72); font-weight: 700; }
.contact-hero-card a:hover { color: white; }
.contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.contact-card { min-height: 300px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); }
.contact-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 17px; color: var(--blue-600); background: var(--soft); font-size: 22px; font-weight: 850; }
.contact-card h2 { margin: 48px 0 10px; font-size: 24px; }
.contact-card p { color: var(--muted); font-size: 14px; }
.contact-people { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.person-card { overflow: hidden; display: grid; grid-template-columns: 210px 1fr; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; }
.person-card img { width: 100%; height: 100%; min-height: 270px; object-fit: cover; filter: grayscale(1); }
.person-card > div { padding: 32px; align-self: center; }
.person-card span { color: var(--blue-600); text-transform: uppercase; letter-spacing: .08em; font-size: 10px; font-weight: 850; }
.person-card h3 { margin: 12px 0 9px; font-size: 25px; }
.person-card p { color: var(--muted); font-size: 13px; }
.person-card a { color: var(--blue-600); font-weight: 750; font-size: 13px; }
.contact-form-section { position: relative; overflow: hidden; }
.contact-form-section::before { content: ""; position: absolute; width: 520px; height: 520px; left: -290px; bottom: -330px; border-radius: 50%; background: rgba(85,214,255,.18); filter: blur(10px); pointer-events: none; }
.contact-form-layout { position: relative; display: grid; grid-template-columns: .83fr 1.17fr; gap: 58px; align-items: start; }
.contact-form-intro { padding-top: 22px; }
.contact-form-intro h2 { margin: 17px 0 20px; font-size: clamp(40px,4.8vw,62px); line-height: 1.05; letter-spacing: -.05em; }
.contact-form-intro > p { max-width: 540px; color: var(--muted); font-size: 17px; }
.contact-topic-list { margin-top: 39px; display: grid; gap: 13px; }
.contact-topic-list > div { padding: 18px 0; display: grid; grid-template-columns: 48px 1fr; gap: 14px; border-top: 1px solid var(--line); }
.contact-topic-list > div:last-child { border-bottom: 1px solid var(--line); }
.contact-topic-list span { color: var(--blue-600); font-size: 11px; font-weight: 850; letter-spacing: .08em; }
.contact-topic-list p { margin: 0; color: var(--muted); font-size: 13px; }
.contact-topic-list strong { display: block; margin-bottom: 2px; color: var(--ink); font-size: 15px; }
.contact-response-note { margin-top: 30px; padding: 20px 22px; display: grid; gap: 5px; border-radius: var(--radius-sm); color: white; background: linear-gradient(135deg, var(--navy-900), var(--navy-800)); box-shadow: var(--shadow-sm); }
.contact-response-note strong { color: var(--cyan-400); font-size: 13px; }
.contact-response-note span { color: rgba(255,255,255,.72); font-size: 13px; }
.contact-form-card { padding: clamp(28px,4vw,48px); border: 1px solid rgba(7,27,59,.08); border-radius: var(--radius-lg); background: white; box-shadow: var(--shadow-md); }
.contact-form-heading { margin-bottom: 30px; }
.contact-form-heading > span { color: var(--blue-600); text-transform: uppercase; letter-spacing: .13em; font-size: 10px; font-weight: 850; }
.contact-form-heading h2 { margin: 7px 0 6px; font-size: 32px; letter-spacing: -.035em; }
.contact-form-heading p { margin: 0; color: var(--muted); font-size: 13px; }
.form-feedback { margin-bottom: 24px; padding: 16px 18px; border-radius: 13px; font-size: 14px; font-weight: 700; }
.form-feedback.is-success { color: #155f3b; border: 1px solid rgba(101,219,155,.55); background: rgba(101,219,155,.16); }
.form-feedback.is-error { color: #8a2743; border: 1px solid rgba(255,143,182,.55); background: rgba(255,143,182,.14); }
.form-honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(1px,1px,1px,1px) !important; white-space: nowrap !important; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: grid; gap: 8px; }
.form-group-full { grid-column: 1 / -1; }
.form-group label { color: var(--navy-800); font-size: 13px; font-weight: 800; }
.form-group label span { color: var(--blue-600); }
.form-group input, .form-group select, .form-group textarea { width: 100%; min-height: 52px; padding: 13px 15px; border: 1px solid #cedaea; border-radius: 13px; color: var(--ink); background: #fbfdff; font: inherit; font-size: 15px; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.form-group textarea { min-height: 170px; resize: vertical; }
.form-group input:hover, .form-group select:hover, .form-group textarea:hover { border-color: #afc1d8; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue-500); background: white; box-shadow: 0 0 0 4px rgba(91,124,255,.12); }
.form-group input.field-invalid, .form-group select.field-invalid, .form-group textarea.field-invalid { border-color: #d64d72; box-shadow: 0 0 0 4px rgba(214,77,114,.1); }
.form-hint { color: var(--muted); font-size: 11px; }
.privacy-check { margin: 23px 0; padding: 17px 18px; display: grid; grid-template-columns: 22px 1fr; gap: 11px; align-items: start; border: 1px solid var(--line); border-radius: 14px; background: var(--soft); cursor: pointer; }
.privacy-check input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--blue-600); }
.privacy-check span { color: #465673; font-size: 12px; line-height: 1.55; }
.privacy-check a { color: var(--blue-600); font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
.privacy-check b { color: var(--blue-600); }
.privacy-check.field-invalid { border-color: #d64d72; background: rgba(255,143,182,.1); }
.contact-submit { width: 100%; min-height: 56px; gap: 12px; border-radius: 14px; cursor: pointer; }
.contact-submit:disabled { cursor: wait; opacity: .72; transform: none; }
.form-security-note { margin: 15px 0 0; color: var(--muted); text-align: center; font-size: 11px; }

/* Legal */
.legal-hero { padding: 155px 0 75px; }
.legal-hero .container { position: relative; z-index: 2; }
.legal-hero h1 { margin: 18px 0 0; font-size: clamp(50px,6vw,76px); line-height: 1; letter-spacing: -.06em; }
.legal-content { max-width: 860px; }
.legal-content h2 { margin: 44px 0 12px; font-size: 23px; letter-spacing: -.02em; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p, .legal-content li { color: #43526b; }
.legal-content a { color: var(--blue-600); text-decoration: underline; text-underline-offset: 3px; }
.legal-stand { display: inline-block; padding: 7px 11px; border-radius: 999px; color: var(--blue-600) !important; background: #edf2ff; font-size: 12px; font-weight: 800; }

/* CTA and footer */
.cta-band { position: relative; overflow: hidden; padding: 85px 0; color: white; background: linear-gradient(125deg, var(--navy-900), #0d346c); }
.cta-band::after { content: ""; position: absolute; width: 500px; height: 500px; right: -180px; top: -250px; border-radius: 50%; background: rgba(85,214,255,.2); filter: blur(20px); }
.cta-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.cta-inner h2 { margin: 14px 0 10px; max-width: 720px; font-size: clamp(36px,4vw,52px); line-height: 1.08; letter-spacing: -.045em; }
.cta-inner p { margin: 0; color: rgba(255,255,255,.65); }
.cta-actions { display: flex; flex-direction: column; gap: 12px; }
.site-footer { color: white; background: #020a17; }
.footer-grid { padding: 70px 0 52px; display: grid; grid-template-columns: 1.5fr .7fr .9fr .7fr; gap: 50px; }
.footer-brand p { max-width: 340px; margin-top: 20px; color: rgba(255,255,255,.48); font-size: 13px; }
.footer-grid h2 { margin: 0 0 18px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .12em; font-size: 10px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 10px; }
.footer-grid a, .footer-grid span { color: rgba(255,255,255,.63); font-size: 13px; }
.footer-grid a:hover { color: white; }
.footer-bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.36); font-size: 11px; }

/* Reveal */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.js .reveal.visible { opacity: 1; transform: none; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes orbit-spin { to { transform: rotate(1turn); } }
@keyframes orbit-counter-spin { to { transform: translate(-50%, -50%) rotate(-1turn); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Responsive */
@media (max-width: 1060px) {
  .header-cta { display: none; }
  .hero-home-grid, .page-hero-grid, .product-hero-grid { gap: 45px; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .product-card-featured { grid-column: span 2; }
  .service-grid, .values-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .relation-grid { grid-template-columns: 1fr; }
  .relation-flow { justify-content: center; }
  .footer-grid { grid-template-columns: 1.2fr .8fr .8fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 78px 0; }
  .header-inner { height: 72px; }
  .nav-toggle { display: block; }
  .site-nav { position: fixed; inset: 72px 0 auto; max-height: 0; overflow: hidden; margin: 0; padding: 0 20px; display: flex; flex-direction: column; align-items: stretch; gap: 0; background: rgba(4,17,38,.98); transition: max-height .25s ease, padding .25s ease; }
  .nav-open .site-nav { max-height: 420px; padding: 12px 20px 24px; border-top: 1px solid rgba(255,255,255,.08); }
  .site-nav a { padding: 15px 5px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .site-nav a::after { display: none; }
  .hero-home { min-height: auto; padding: 140px 0 85px; }
  .hero-home-grid, .page-hero-grid, .product-hero-grid, .section-heading.split, .process-layout, .about-preview-grid, .detail-split, .integration-grid, .story-grid, .cta-inner { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: clamp(50px,13vw,72px); }
  .solution-map { --orbit-radius: 184px; max-width: 490px; margin-top: 35px; }
  .map-node { min-width: 148px; padding: 10px 11px; }
  .map-node strong { font-size: 12px; }
  .map-node small { font-size: 8.5px; }
  .section-heading.split { gap: 20px; }
  .process-layout, .about-preview-grid, .detail-split, .integration-grid, .story-grid { gap: 48px; }
  .page-hero { padding: 135px 0 75px; }
  .page-hero-panel { min-height: 300px; }
  .product-hero { padding: 135px 0 75px; }
  .workflow-list { grid-template-columns: 1fr; }
  .workflow-list li { min-height: auto; display: grid; grid-template-columns: 50px 1fr; align-items: center; border-bottom: 1px solid var(--line); border-top: 0; }
  .workflow-list li:first-child { border-top: 1px solid var(--line); }
  .workflow-list li:not(:last-child)::after { content: "↓"; right: auto; left: 17px; top: auto; bottom: -9px; transform: none; }
  .workflow-list strong { margin: 0; }
  .relation-flow { display: grid; grid-template-columns: 1fr; }
  .relation-flow > div { width: 100%; min-height: 110px; }
  .relation-flow i { transform: rotate(90deg); text-align: center; }
  .bio-card, .bio-card-reverse { grid-template-columns: 1fr; }
  .bio-card-reverse .bio-photo, .bio-card-reverse .bio-text { order: initial; }
  .bio-photo { display: grid; grid-template-columns: 180px 1fr; gap: 22px; align-items: center; }
  .bio-text { columns: 1; }
  .contact-people { grid-template-columns: 1fr; }
  .contact-form-layout { grid-template-columns: 1fr; gap: 42px; }
  .contact-form-intro { padding-top: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 600px) {
  .brand-mark { width: 38px; height: 38px; }
  .brand-name { font-size: 22px; }
  .hero-home { padding-top: 125px; }
  .hero-copy h1 { font-size: 48px; }
  .hero-copy > p { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button, .hero-actions .text-link { width: 100%; justify-content: center; }
  .hero-proof { gap: 18px; }
  .hero-proof strong { font-size: 18px; }
  .solution-map { height: auto; max-width: none; aspect-ratio: auto; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .map-ring { display: none; }
  .map-core { position: relative; width: 118px; height: 118px; inset: auto; grid-column: 1 / -1; justify-self: center; margin-bottom: 8px; }
  .orbit-track { position: static; display: contents; animation: none; }
  .orbit-item { position: static; width: auto; height: auto; transform: none !important; }
  .node-orientation { transform: none !important; }
  .map-node { position: relative; min-width: 0; width: 100%; height: 100%; padding: 11px 10px; transform: none; animation: none; }
  .map-node strong, .map-node small { white-space: normal; }
  .node-invoice { grid-column: 1 / -1; }
  .node-invoice .map-node { max-width: calc(50% - 5px); margin-inline: auto; }
  .audience-strip .container { padding: 20px 0; gap: 12px 15px; }
  .audience-strip i { display: none; }
  .section-heading h2, .process-intro h2, .about-copy h2, .detail-split h2, .integration-grid h2, .story-copy h2 { font-size: 38px; }
  .service-grid, .products-grid, .feature-grid, .values-grid, .contact-grid { grid-template-columns: 1fr; }
  .product-card-featured { grid-column: auto; }
  .product-card-image, .product-card-visual { min-height: 180px; height: 180px; }
  .page-hero h1 { font-size: 46px; }
  .page-hero-panel strong { font-size: 88px; }
  .product-hero h1 { font-size: 54px; }
  .product-hero-image { padding: 10px; }
  .browser-content { padding: 28px 20px; }
  .about-portrait-pair { min-height: 330px; }
  .about-portrait-pair img { width: 205px; height: 205px; }
  .about-portrait-pair img:first-child { left: 0; }
  .about-portrait-pair img:nth-child(2) { right: 0; }
  .story-year { min-height: 300px; }
  .story-year strong { font-size: 74px; }
  .bio-card { padding: 20px; }
  .bio-photo { grid-template-columns: 1fr; }
  .bio-photo img { max-width: 240px; }
  .person-card { grid-template-columns: 120px 1fr; }
  .person-card img { min-height: 220px; }
  .person-card > div { padding: 22px; }
  .contact-form-card { padding: 25px; border-radius: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group-full { grid-column: auto; }
  .contact-form-intro h2 { font-size: 42px; }
  .cta-inner { gap: 28px; }
  .cta-actions { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { padding: 18px 0; align-items: flex-start; flex-direction: column; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* About page: company development */
.company-evolution {
  padding: clamp(80px, 9vw, 132px) 0;
  color: white;
  background:
    radial-gradient(circle at 12% 18%, rgba(85,214,255,.15), transparent 27%),
    radial-gradient(circle at 88% 82%, rgba(91,124,255,.17), transparent 31%),
    var(--navy-950);
}
.company-evolution .section-heading { margin-bottom: 52px; }
.company-evolution .section-heading h2 { color: white; }
.company-evolution .section-heading p { color: rgba(255,255,255,.64); }
.evolution-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.evolution-card {
  min-height: 315px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(8px);
}
.evolution-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -55px;
  bottom: -55px;
  border-radius: 50%;
  border: 1px solid rgba(85,214,255,.2);
}
.evolution-index { display: block; margin-bottom: 44px; color: var(--cyan-400); font-size: 11px; font-weight: 850; letter-spacing: .12em; }
.evolution-card strong { display: block; color: rgba(255,255,255,.48); font-size: 13px; text-transform: uppercase; letter-spacing: .09em; }
.evolution-card h3 { margin: 12px 0 14px; color: white; font-size: 22px; line-height: 1.2; }
.evolution-card p { margin: 0; color: rgba(255,255,255,.63); font-size: 14px; }
.founding-principle {
  margin-top: 22px;
  padding: 32px 38px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  align-items: center;
  border-radius: var(--radius-md);
  background: linear-gradient(110deg, rgba(85,214,255,.16), rgba(91,124,255,.11));
  border: 1px solid rgba(85,214,255,.2);
}
.founding-principle span { color: var(--cyan-400); font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .13em; }
.founding-principle p { margin: 0; color: white; font-size: clamp(20px, 2.2vw, 29px); line-height: 1.32; letter-spacing: -.025em; }

@media (max-width: 1050px) {
  .evolution-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .evolution-grid { grid-template-columns: 1fr; }
  .evolution-card { min-height: auto; }
  .founding-principle { grid-template-columns: 1fr; gap: 14px; padding: 26px; }
}
