:root {
  --ink: #10233a;
  --ink-soft: #52677a;
  --teal-900: #075a68;
  --teal-800: #087586;
  --teal-700: #0b8fa3;
  --teal-600: #12a6b8;
  --teal-500: #31beca;
  --teal-200: #bcebf0;
  --teal-100: #dff5f7;
  --teal-50: #f1fbfc;
  --surface: #ffffff;
  --line: #dcebef;
  --shadow-sm: 0 12px 32px rgba(13, 83, 97, 0.08);
  --shadow-lg: 0 28px 70px rgba(10, 75, 88, 0.16);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img, picture { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #f2b84b; outline-offset: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; transform: translateY(-160%); padding: .75rem 1rem; border-radius: 8px; color: white; background: var(--ink); font-weight: 700; transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }
.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.section { padding: 5.5rem 0; }

.site-header { position: sticky; z-index: 100; top: 0; border-bottom: 1px solid transparent; background: rgba(255,255,255,.88); backdrop-filter: blur(18px); transition: border-color .25s, box-shadow .25s; }
.site-header.is-scrolled { border-color: rgba(12,120,138,.12); box-shadow: 0 8px 30px rgba(10,63,74,.06); }
.header-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.wordmark { display: inline-flex; align-items: center; gap: .72rem; color: var(--ink); text-decoration: none; line-height: 1; letter-spacing: .07em; }
.wordmark > span:last-child { display: grid; gap: .24rem; }
.wordmark strong { font-size: .95rem; font-weight: 800; }
.wordmark small { color: var(--teal-800); font-size: .61rem; font-weight: 800; letter-spacing: .28em; }
.wordmark-logo { width: 46px; height: 46px; flex: 0 0 46px; border-radius: 50%; object-fit: cover; }
.nav-toggle { width: 44px; height: 44px; display: grid; place-content: center; gap: 5px; border: 1px solid var(--line); border-radius: 12px; background: white; cursor: pointer; }
.nav-toggle > span:not(.sr-only) { width: 20px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] > span:nth-child(3) { opacity: 0; }
.nav-toggle[aria-expanded="true"] > span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
.primary-nav { position: absolute; top: calc(100% + 1px); left: 1rem; right: 1rem; display: none; padding: .6rem; border: 1px solid var(--line); border-radius: 16px; background: white; box-shadow: var(--shadow-sm); }
.primary-nav.is-open { display: grid; }
.primary-nav a { padding: .8rem 1rem; border-radius: 10px; color: var(--ink-soft); text-decoration: none; font-size: .9rem; font-weight: 650; }
.primary-nav a:hover { color: var(--teal-800); background: var(--teal-50); }

.hero { position: relative; isolation: isolate; overflow: clip; padding: 4rem 0 5.5rem; background: linear-gradient(145deg, #fff 20%, #f4fbfc 72%, #e8f7f8); }
.hero-grid { display: grid; gap: 3.2rem; align-items: center; }
.hero-copy, .hero-visual { min-width: 0; }
.eyebrow { display: flex; align-items: center; gap: .65rem; margin: 0 0 1.15rem; color: var(--teal-800); font-size: .73rem; font-weight: 800; letter-spacing: .17em; }
.eyebrow > span { width: 26px; height: 2px; background: var(--teal-500); }
.hero-kicker { margin: 0 0 .8rem; color: var(--ink-soft); font-size: .98rem; font-weight: 650; }
h1, h2 { margin: 0; font-weight: 760; line-height: 1.08; letter-spacing: -.045em; text-wrap: balance; }
h1 { max-width: 720px; font-size: clamp(2.45rem, 8.7vw, 4.65rem); }
h2 { font-size: clamp(2rem, 6vw, 3.55rem); }
h1 em, h2 em { color: var(--teal-700); font-style: normal; }
.hero-lead { max-width: 650px; margin: 1.5rem 0 0; color: var(--ink-soft); font-size: 1.04rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: .65rem; padding: .8rem 1.2rem; border: 1px solid transparent; border-radius: 12px; text-decoration: none; font-size: .83rem; font-weight: 800; letter-spacing: .035em; text-transform: uppercase; }
.button-primary { color: white; background: var(--teal-800); box-shadow: 0 10px 22px rgba(7,117,134,.21); transition: transform .2s, background .2s, box-shadow .2s; }
.button-primary:hover { transform: translateY(-2px); background: var(--teal-900); box-shadow: 0 14px 28px rgba(7,117,134,.28); }
.button-quiet { border-color: var(--line); color: var(--ink-soft); background: rgba(255,255,255,.72); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-500); box-shadow: 0 0 0 5px rgba(49,190,202,.13); }
.hero-signals { display: flex; flex-wrap: wrap; gap: .7rem 1rem; padding: 0; margin: 1.7rem 0 0; list-style: none; color: var(--ink-soft); font-size: .78rem; font-weight: 650; }
.hero-signals span { color: var(--teal-700); }
.hero-visual { position: relative; width: min(100%, 610px); margin-inline: auto; padding: .6rem; }
.photo-frame { position: relative; overflow: hidden; aspect-ratio: 717 / 596; border: 9px solid rgba(255,255,255,.82); border-radius: var(--radius-lg); background: var(--teal-100); box-shadow: var(--shadow-lg); transform: rotate(1deg); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-wash { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 65%, rgba(3,67,77,.18)); pointer-events: none; }
.floating-card { position: absolute; display: none; align-items: center; gap: .7rem; padding: .8rem 1rem; border: 1px solid rgba(255,255,255,.72); border-radius: 16px; background: rgba(255,255,255,.9); box-shadow: var(--shadow-sm); backdrop-filter: blur(12px); }
.floating-card span:last-child { display: grid; line-height: 1.3; }
.floating-card strong { font-size: .76rem; }
.floating-card small { color: var(--ink-soft); font-size: .65rem; }
.floating-icon { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 9px; color: white; background: var(--teal-700); }
.floating-card-top { top: 4%; right: -1.2rem; }
.floating-card-bottom { bottom: 3%; left: -1.3rem; }
.cloud-pulse { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; background: var(--teal-100); }
.cloud-pulse i { width: 9px; height: 9px; border-radius: 50%; background: var(--teal-700); box-shadow: 0 0 0 5px rgba(11,143,163,.14); }
.hero-glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(2px); }
.hero-glow-one { width: 280px; height: 280px; top: -120px; right: -90px; background: rgba(49,190,202,.13); }
.hero-glow-two { width: 160px; height: 160px; bottom: 1rem; left: -90px; border: 35px solid rgba(18,166,184,.06); }

.value-section { border-top: 1px solid var(--line); }
.value-grid { display: grid; gap: 2rem; }
.section-heading p:not(.eyebrow) { max-width: 680px; margin: 1.25rem 0 0; color: var(--ink-soft); font-size: 1.02rem; }
.value-copy { align-self: end; }
.value-copy > p { margin: 0; color: var(--ink-soft); font-size: 1.08rem; }
.value-line { height: 3px; margin-top: 2rem; background: var(--line); }
.value-line span { display: block; width: 38%; height: 100%; background: var(--teal-600); }
.features-section { background: #f7fbfc; }
.section-heading-centered { max-width: 760px; margin: 0 auto 3rem; text-align: center; }
.section-heading-centered .eyebrow { justify-content: center; }
.section-heading-centered > p:last-child { margin-inline: auto; }
.feature-grid { display: grid; gap: 1rem; }
.feature-card { position: relative; min-width: 0; min-height: 250px; padding: 1.5rem; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; box-shadow: 0 5px 18px rgba(15,82,94,.04); transition: transform .25s, border-color .25s, box-shadow .25s; }
.feature-card:hover { transform: translateY(-5px); border-color: var(--teal-200); box-shadow: var(--shadow-sm); }
.feature-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 1.45rem; border-radius: 14px; color: var(--teal-800); background: var(--teal-50); }
.feature-icon svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.feature-number { position: absolute; top: 1.2rem; right: 1.35rem; margin: 0; color: #b5c6cc; font-size: .7rem; font-weight: 800; letter-spacing: .15em; }
.feature-card h3 { margin: 0; font-size: 1.07rem; line-height: 1.3; }
.feature-card > p:last-child { margin: .75rem 0 0; color: var(--ink-soft); font-size: .91rem; }
.feature-card-accent { color: white; border-color: var(--teal-800); background: linear-gradient(145deg, var(--teal-800), var(--teal-900)); }
.feature-card-accent .feature-icon { color: white; background: rgba(255,255,255,.14); }
.feature-card-accent .feature-number, .feature-card-accent > p:last-child { color: rgba(255,255,255,.72); }

.cloud-section { padding: 5.5rem 0; color: white; overflow: hidden; background: var(--ink); }
.cloud-grid { display: grid; gap: 3rem; align-items: center; }
.eyebrow-light { color: var(--teal-200); }
.cloud-section h2 em, .ai-section h2 em { color: #67d6df; }
.cloud-section .section-heading > p:last-of-type, .ai-card > div:last-child > p { color: #c3d2dc; }
.cloud-visual { position: relative; min-height: 390px; display: grid; place-items: center; }
.cloud-core { position: relative; z-index: 2; width: 154px; height: 154px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(92,216,225,.45); border-radius: 50%; background: radial-gradient(circle at 40% 35%, #168ca0, #075766); box-shadow: 0 0 70px rgba(30,187,199,.2); }
.cloud-core span { font-size: 2rem; }.cloud-core strong { font-size: .75rem; letter-spacing: .12em; }.cloud-core small { color: var(--teal-200); font-size: .55rem; letter-spacing: .25em; }
.orbit { position: absolute; border: 1px solid rgba(120,216,225,.18); border-radius: 50%; }
.orbit-one { width: 280px; height: 280px; }.orbit-two { width: 380px; height: 230px; transform: rotate(-17deg); }
.orbit-node { position: absolute; padding: .5rem .7rem; border: 1px solid rgba(255,255,255,.13); border-radius: 10px; color: #d5e6ea; background: rgba(255,255,255,.06); font-size: .69rem; }
.node-one { top: 12%; left: 7%; }.node-two { right: 1%; top: 45%; }.node-three { bottom: 8%; left: 18%; }
.check-list { display: grid; gap: .8rem; padding: 0; margin: 1.8rem 0 0; list-style: none; color: #d8e5e9; font-size: .88rem; }
.check-list span { width: 25px; height: 25px; display: inline-grid; place-items: center; margin-right: .5rem; border-radius: 50%; color: #8ce2e8; background: rgba(80,198,210,.12); }

.growth-grid { display: grid; gap: 3rem; align-items: center; }
.growth-map { position: relative; min-height: 490px; }
.growth-center { position: absolute; z-index: 2; top: 50%; left: 50%; width: 145px; height: 145px; display: flex; flex-direction: column; align-items: center; justify-content: center; transform: translate(-50%,-50%); border-radius: 50%; color: white; text-align: center; background: var(--teal-800); box-shadow: 0 18px 45px rgba(7,117,134,.22); }
.growth-center span { width: 31px; height: 31px; display: grid; place-items: center; margin-bottom: .35rem; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; font-weight: 800; }
.growth-center strong { font-size: .75rem; line-height: 1.25; }
.growth-map::before, .growth-map::after { content: ""; position: absolute; top: 50%; left: 50%; border: 1px dashed #b9dce1; border-radius: 50%; transform: translate(-50%,-50%); }
.growth-map::before { width: 360px; height: 360px; }.growth-map::after { width: 250px; height: 250px; }
.growth-item { position: absolute; z-index: 3; width: 145px; padding: .85rem; border: 1px solid var(--line); border-radius: 14px; background: white; box-shadow: var(--shadow-sm); }
.growth-item > span { color: var(--teal-600); }.growth-item strong, .growth-item small { display: block; }.growth-item strong { margin-top: .25rem; font-size: .76rem; }.growth-item small { color: var(--ink-soft); font-size: .63rem; }
.growth-a { top: 0; left: 50%; transform: translateX(-50%); }.growth-b { top: 42%; right: 0; }.growth-c { bottom: 0; left: 50%; transform: translateX(-50%); }.growth-d { top: 42%; left: 0; }

.ai-section { padding-top: 2rem; }
.ai-card { display: grid; gap: 2rem; align-items: center; padding: 2rem; border-radius: var(--radius-lg); color: white; background: linear-gradient(125deg, var(--teal-900), #123c54); box-shadow: var(--shadow-lg); }
.ai-symbol { position: relative; width: 170px; height: 170px; display: grid; place-items: center; margin-inline: auto; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.ai-symbol span { z-index: 2; width: 86px; height: 86px; display: grid; place-items: center; border-radius: 50%; color: var(--teal-200); background: rgba(255,255,255,.1); font-size: 2.2rem; }
.ai-symbol i, .ai-symbol b { position: absolute; border: 1px dashed rgba(120,225,230,.25); border-radius: 50%; }.ai-symbol i { inset: 20px; }.ai-symbol b { inset: -15px; }
.ai-note { display: flex; align-items: flex-start; gap: .7rem; margin-top: 1.4rem !important; padding: .85rem 1rem; border-left: 2px solid var(--teal-500); background: rgba(255,255,255,.06); font-size: .82rem !important; }
.ai-note span { flex: 0 0 auto; width: 21px; height: 21px; display: grid; place-items: center; border: 1px solid var(--teal-200); border-radius: 50%; color: var(--teal-200); font-size: .7rem; font-weight: 800; }

.final-cta { position: relative; isolation: isolate; padding: 6rem 0; overflow: hidden; color: white; text-align: center; background: var(--teal-800); }
.final-pattern { position: absolute; z-index: -1; inset: 0; opacity: .15; background-image: radial-gradient(circle at center, transparent 0 2px, rgba(255,255,255,.45) 2.5px 3px, transparent 3.5px); background-size: 42px 42px; mask-image: radial-gradient(circle at center, black, transparent 70%); }
.final-content { max-width: 860px; }.final-content .eyebrow { justify-content: center; }.final-content h2 { font-size: clamp(2.1rem, 7vw, 4rem); }.final-content > p:not(.eyebrow,.final-brand) { margin: .4rem 0 2rem; color: #d8f4f6; }
.final-brand { margin: 1.6rem 0 0; font-size: .85rem; font-weight: 850; letter-spacing: .2em; }
.button-light { color: var(--teal-900); background: white; transition: transform .2s, box-shadow .2s; }.button-light:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(1,45,52,.2); }

.site-footer { padding: 3rem 0 1.5rem; background: #071b2b; color: #a8bbc7; }
.footer-main { display: grid; gap: 1.1rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.wordmark-footer { color: white; }.wordmark-footer small { color: #bdebf0; }.footer-main p { margin: 0; font-size: .85rem; }.footer-main > a:last-child { color: #bdebf0; font-size: .85rem; text-underline-offset: 4px; }
.footer-bottom { display: flex; flex-direction: column; gap: 1.2rem; padding-top: 1.4rem; font-size: .72rem; }
.footer-bottom small { display: block; margin-bottom: .4rem; color: #d0dbe1; font-size: .7rem; }.footer-bottom p { margin: 0; }.footer-bottom > a { align-self: flex-start; color: #bdebf0; text-decoration: none; }

.has-reveal .reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.has-reveal .reveal[data-delay="1"] { transition-delay: .1s; }.has-reveal .reveal[data-delay="2"] { transition-delay: .2s; }.has-reveal .reveal.is-visible { opacity: 1; transform: none; }

@media (min-width: 560px) {
  .container { width: min(100% - 3rem, var(--container)); }
  .floating-card { display: flex; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ai-card { padding: 3rem; grid-template-columns: 190px minmax(0,1fr); }
  .footer-main { grid-template-columns: 1.2fr 1fr auto; align-items: center; }
  .footer-bottom { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .footer-bottom > a { align-self: auto; }
}

@media (min-width: 800px) {
  .section { padding: 7rem 0; }
  .header-inner { min-height: 80px; }
  .nav-toggle { display: none; }
  .primary-nav { position: static; display: flex; align-items: center; padding: 0; border: 0; background: transparent; box-shadow: none; }
  .primary-nav a { padding: .65rem .8rem; }
  .hero { padding: 5rem 0 7rem; }
  .hero-grid { grid-template-columns: minmax(0,1.05fr) minmax(360px,.95fr); gap: 3.5rem; }
  .hero-visual { margin-right: 0; }
  .value-grid { grid-template-columns: 1.15fr .85fr; gap: 5rem; }
  .feature-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .cloud-section { padding: 7rem 0; }
  .cloud-grid { grid-template-columns: .9fr 1.1fr; gap: 6rem; }
  .growth-grid { grid-template-columns: .9fr 1.1fr; gap: 5rem; }
  .ai-card { grid-template-columns: 230px minmax(0,1fr); padding: 4rem; }
}

@media (min-width: 1100px) {
  .hero-grid { gap: 5.5rem; }
  .hero-copy { padding-bottom: 1rem; }
  .feature-card { min-height: 270px; padding: 1.8rem; }
  .primary-nav { gap: .35rem; }
}

@media (max-width: 420px) {
  .container { width: min(100% - 1.35rem, var(--container)); }
  .wordmark { gap: .55rem; }
  .wordmark-logo { width: 42px; height: 42px; flex-basis: 42px; }
  .hero { padding-top: 3rem; }
  h1 { font-size: clamp(2.25rem, 11vw, 3rem); }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .photo-frame { border-width: 6px; border-radius: 25px; }
  .growth-map { min-height: 430px; transform: scale(.9); }
  .growth-map::before { width: 310px; height: 310px; }.growth-map::after { width: 215px; height: 215px; }
  .growth-item { width: 126px; padding: .7rem; }
  .ai-card { padding: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .has-reveal .reveal { opacity: 1; transform: none; }
}
