:root {
  --navy: #08245a;
  --navy-2: #0d347a;
  --blue: #0969f0;
  --blue-2: #2f86ff;
  --blue-3: #eaf4ff;
  --cyan: #07b4da;
  --green: #8fd43f;
  --ink: #10295a;
  --text: #435574;
  --muted: #70809c;
  --line: #dce7f3;
  --soft: #f6faff;
  --white: #ffffff;
  --success: #20b486;
  --warning: #f8a51b;
  --danger: #f05b65;
  --purple: #7759e8;
  --shadow-sm: 0 10px 30px rgba(24, 75, 145, .08);
  --shadow: 0 24px 60px rgba(24, 75, 145, .15);
  --shadow-lg: 0 38px 90px rgba(17, 69, 147, .22);
  --radius: 22px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 96px 0; }
.section-soft { background: var(--soft); }
.section-blue { background: linear-gradient(135deg, #073c96, #0873e7 72%, #049acb); color: #fff; }
.skip-link { position: absolute; left: -999px; top: 10px; z-index: 999; background: #fff; padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { left: 10px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(208,223,240,.75);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 188px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 28px; color: #304768; font-size: 13px; font-weight: 650; }
.main-nav > a { position: relative; }
.main-nav > a:not(.btn):after {
  content: ""; position: absolute; height: 2px; left: 0; right: 100%; bottom: -10px;
  background: var(--blue); border-radius: 99px; transition: right .2s ease;
}
.main-nav > a:not(.btn):hover, .main-nav > a.active { color: var(--blue); }
.main-nav > a:not(.btn):hover:after, .main-nav > a.active:after { right: 0; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: #eff6ff; border-radius: 11px; padding: 11px; }
.nav-toggle span { width: 100%; height: 2px; background: var(--ink); display: block; margin: 5px 0; border-radius: 2px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 46px; padding: 0 20px; border-radius: 10px; border: 1px solid transparent;
  font-size: 13px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, #075bdc, #087bf6); box-shadow: 0 12px 25px rgba(8, 105, 240, .22); }
.btn-secondary { color: var(--blue); background: #fff; border-color: #98c5fa; }
.btn-dark { color: #fff; background: var(--navy); }
.btn-light { color: var(--navy); background: #fff; box-shadow: var(--shadow-sm); }
.btn-small { min-height: 40px; padding: 0 16px; }
.btn-large { min-height: 52px; padding: 0 25px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-size: 13px; font-weight: 800; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

/* Home hero */
.hero {
  position: relative; overflow: hidden; padding: 76px 0 42px;
  background:
    radial-gradient(circle at 88% 14%, rgba(45,142,255,.25), transparent 34%),
    radial-gradient(circle at 10% 80%, rgba(0,183,215,.09), transparent 30%),
    linear-gradient(135deg, #fbfdff 0%, #f6fbff 52%, #edf7ff 100%);
}
.hero:after {
  content: ""; position: absolute; width: 720px; height: 720px; border-radius: 50%; right: -340px; top: -360px;
  background: linear-gradient(145deg, #0b72ec, #32a6ff); opacity: .13;
}
.hero-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.hero-copy { padding: 24px 0 54px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px; border-radius: 999px;
  background: #e8f3ff; color: #075ccf; font-size: 11px; font-weight: 800; margin-bottom: 20px;
}
.badge i { width: 7px; height: 7px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 4px rgba(143,212,63,.14); }
.hero h1 { margin: 0; max-width: 640px; font-size: clamp(47px, 5vw, 72px); line-height: 1.03; letter-spacing: -.05em; color: var(--ink); }
.hero h1 span { color: var(--blue); }
.hero-lead { max-width: 625px; font-size: 17px; line-height: 1.7; color: #60708a; margin: 22px 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { margin-top: 24px; display: flex; align-items: center; gap: 12px; color: #70809a; font-size: 11px; }
.hero-note .mini-checks { display: flex; }
.hero-note .mini-checks span { width: 25px; height: 25px; border-radius: 50%; background: #fff; border: 2px solid #eef5fd; display: grid; place-items: center; color: var(--success); margin-left: -5px; font-size: 10px; font-weight: 900; }
.hero-note .mini-checks span:first-child { margin-left: 0; }

.hero-art { min-height: 520px; position: relative; display: grid; place-items: center; }
.hero-blob { position: absolute; width: 500px; height: 500px; border-radius: 44% 56% 64% 36% / 48% 42% 58% 52%; background: linear-gradient(145deg,#0f77ef,#2ea6ff); right: 8px; top: 3px; transform: rotate(-7deg); }
.hero-dots { position: absolute; right: 28px; top: 30px; width: 110px; height: 80px; opacity: .5; background-image: radial-gradient(#fff 1.3px, transparent 1.3px); background-size: 11px 11px; }
.device-laptop { position: relative; z-index: 3; width: 560px; margin-left: 10px; transform: perspective(1300px) rotateY(-3deg); }
.laptop-screen { background: #10243b; border: 10px solid #10243b; border-radius: 18px 18px 8px 8px; box-shadow: var(--shadow-lg); overflow: hidden; }
.laptop-base { width: 110%; height: 14px; background: linear-gradient(#d7e0eb,#a7b5c5); margin-left: -5%; border-radius: 2px 2px 18px 18px; position: relative; box-shadow: 0 15px 25px rgba(15,58,111,.18); }
.laptop-base:after { content: ""; width: 90px; height: 3px; background: #94a5b7; position: absolute; left: 50%; transform: translateX(-50%); top: 1px; border-radius: 0 0 5px 5px; }
.phone-frame { position: absolute; z-index: 5; right: -5px; bottom: 54px; width: 142px; background: #0d213b; border: 7px solid #0d213b; border-radius: 27px; box-shadow: 0 25px 50px rgba(3,43,95,.32); overflow: hidden; }
.phone-notch { height: 17px; background: #0d213b; position: relative; }
.phone-notch:after { content: ""; position: absolute; width: 40px; height: 6px; background: #223750; border-radius: 6px; left: 50%; transform: translateX(-50%); top: 4px; }
.phone-ui { background: #f8fbff; min-height: 245px; padding: 12px 10px 14px; }
.phone-ui strong { color: var(--ink); font-size: 9px; }
.phone-stat { margin: 10px 0; padding: 9px; background: linear-gradient(135deg,#0767e8,#2d9ef7); color: #fff; border-radius: 9px; }
.phone-stat small { display: block; font-size: 6px; opacity: .75; }
.phone-stat b { font-size: 15px; }
.phone-row { display: flex; align-items: center; gap: 7px; margin: 8px 0; font-size: 6px; color: #60718a; }
.phone-row i { width: 17px; height: 17px; border-radius: 5px; background: #e6f1ff; color: #1670e8; display: grid; place-items: center; font-style: normal; font-weight: 900; }

/* Demo dashboard used throughout */
.demo-dashboard { background: #f8fbff; color: #26405f; min-height: 330px; display: grid; grid-template-columns: 58px 1fr; }
.demo-side { background: #0b3f92; padding: 17px 11px; display: flex; flex-direction: column; gap: 15px; }
.demo-side .demo-n { width: 29px; height: 29px; border-radius: 8px; background: #fff; color: #0871e7; display: grid; place-items: center; font-size: 13px; font-weight: 900; margin-bottom: 7px; }
.demo-side b { height: 7px; border-radius: 8px; background: rgba(255,255,255,.24); }
.demo-side b.active { background: #fff; }
.demo-main { padding: 17px 18px; min-width: 0; }
.demo-top { display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.demo-title small { display: block; font-size: 7px; color: #8c9bb0; }
.demo-title strong { display: block; color: #193356; font-size: 14px; }
.demo-user { width: 24px; height: 24px; border-radius: 50%; background: #ddecff; }
.demo-metrics { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-top: 15px; }
.demo-metric { background: #fff; border: 1px solid #e4eef9; border-radius: 9px; padding: 10px; min-width: 0; }
.demo-metric .mi { width: 22px; height: 22px; border-radius: 6px; display: grid; place-items: center; font-size: 8px; margin-bottom: 7px; background: #e7f2ff; color: #116be3; }
.demo-metric:nth-child(2) .mi { background: #fff0dd; color: #dc7b00; }
.demo-metric:nth-child(3) .mi { background: #e5f7ee; color: #159966; }
.demo-metric:nth-child(4) .mi { background: #efeaff; color: #6e51d7; }
.demo-metric small { font-size: 6px; color: #8696aa; display: block; }
.demo-metric strong { font-size: 13px; color: #1d3657; white-space: nowrap; }
.demo-panels { display: grid; grid-template-columns: 1.35fr .65fr; gap: 9px; margin-top: 9px; }
.demo-card { background: #fff; border: 1px solid #e4eef9; border-radius: 9px; padding: 11px; }
.demo-card-head { display: flex; justify-content: space-between; align-items: center; font-size: 7px; }
.demo-card-head strong { color: #29405e; }
.demo-card-head span { color: #90a0b3; }
.mini-bars { height: 92px; display: flex; align-items: end; gap: 7px; padding: 14px 2px 2px; }
.mini-bars i { flex: 1; background: linear-gradient(#2b85f7,#97c6ff); border-radius: 4px 4px 1px 1px; }
.mini-donut { width: 82px; height: 82px; border-radius: 50%; margin: 17px auto 4px; background: conic-gradient(#1176e8 0 72%, #24b69c 72% 94%, #e8eff7 94% 100%); position: relative; display: grid; place-items: center; }
.mini-donut:after { content: ""; position: absolute; width: 55px; height: 55px; border-radius: 50%; background: #fff; }
.mini-donut b { position: relative; z-index: 2; font-size: 12px; color: #1d385b; }
.demo-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 9px; }
.demo-list { margin-top: 9px; }
.demo-list span { display: flex; justify-content: space-between; padding: 5px 0; border-top: 1px solid #eef3f8; font-size: 6px; color: #718096; }
.demo-list b { color: #2f4a6d; }
.demo-label { position: absolute; z-index: 7; left: 54px; bottom: 32px; padding: 8px 11px; border-radius: 8px; background: rgba(255,255,255,.96); color: #315274; font-size: 9px; font-weight: 750; box-shadow: var(--shadow-sm); }
.demo-label:before { content: "•"; color: var(--green); margin-right: 5px; font-size: 18px; line-height: 0; vertical-align: -2px; }

/* Section headings */
.section-kicker { color: var(--blue); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .11em; text-align: center; }
.section-heading { max-width: 800px; margin: 0 auto 45px; text-align: center; }
.section-heading h2 { margin: 8px 0 10px; color: var(--ink); font-size: clamp(34px, 4vw, 50px); line-height: 1.08; letter-spacing: -.035em; }
.section-heading p { margin: 0; color: var(--muted); font-size: 15px; }
.section-heading.left { text-align: left; margin: 0 0 36px; }
.section-heading.left .section-kicker { text-align: left; }

/* Flagship product */
.flagship { padding: 66px 0 88px; background: #fff; }
.feature-strip { display: grid; grid-template-columns: repeat(6,1fr); gap: 12px; margin-top: 32px; }
.feature-chip { min-height: 74px; display: flex; align-items: center; gap: 10px; padding: 13px; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: 0 8px 24px rgba(17,73,142,.04); color: #244467; font-size: 11px; font-weight: 800; }
.chip-icon { flex: 0 0 34px; height: 34px; border-radius: 8px; display: grid; place-items: center; color: #fff; background: var(--blue); font-size: 13px; }
.feature-chip:nth-child(3) .chip-icon { background: #1bb875; }
.feature-chip:nth-child(4) .chip-icon { background: #f4a315; }
.feature-chip:nth-child(5) .chip-icon { background: #735be2; }
.feature-chip:nth-child(6) .chip-icon { background: #f05f6b; }
.flagship-cta { display: flex; justify-content: center; margin-top: 28px; }

/* Services */
.services { background: #f8fbff; }
.service-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.service-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 25px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(145deg,#075fe2,#268df9); color: #fff; font-weight: 900; font-size: 17px; }
.service-card:nth-child(2) .service-icon { background: linear-gradient(145deg,#059cd2,#23c6db); }
.service-card:nth-child(3) .service-icon { background: linear-gradient(145deg,#0b79a5,#24b6bb); }
.service-card:nth-child(4) .service-icon { background: linear-gradient(145deg,#245ac7,#6d7bf2); }
.service-card h3 { color: var(--ink); font-size: 18px; line-height: 1.25; margin: 18px 0 9px; }
.service-card p { color: #718099; font-size: 12px; margin: 0 0 20px; }

/* School benefit */
.benefit-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.tablet-art { position: relative; min-height: 420px; display: grid; place-items: center; }
.tablet-frame { width: 430px; border: 10px solid #173451; border-radius: 28px; background: #173451; box-shadow: var(--shadow-lg); transform: rotate(-8deg); overflow: hidden; }
.tablet-frame .demo-dashboard { min-height: 270px; grid-template-columns: 45px 1fr; }
.tablet-frame .demo-main { padding: 12px; }
.tablet-frame .demo-metrics { grid-template-columns: repeat(2,1fr); }
.tablet-frame .demo-panels { grid-template-columns: 1fr; }
.tablet-frame .demo-panels .demo-card:nth-child(2), .tablet-frame .demo-bottom { display: none; }
.benefit-copy h2 { color: var(--ink); margin: 0 0 14px; font-size: clamp(34px,4vw,49px); line-height: 1.08; letter-spacing: -.035em; }
.benefit-copy > p { color: var(--muted); font-size: 15px; max-width: 570px; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 25px; margin: 26px 0 30px; }
.check-item { display: flex; gap: 10px; align-items: center; color: #38516f; font-size: 12px; font-weight: 700; }
.check-item i { width: 22px; height: 22px; border-radius: 50%; background: #e6f7ef; color: var(--success); display: grid; place-items: center; font-style: normal; font-size: 10px; font-weight: 900; }
.pipeline-card { border: 1px solid var(--line); background: #fff; border-radius: 17px; padding: 18px 20px; box-shadow: var(--shadow-sm); display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; max-width: 560px; }
.pipeline-card div { padding-right: 14px; border-right: 1px solid #e5edf6; }
.pipeline-card div:last-child { border-right: 0; }
.pipeline-card small { display: block; color: #8a98aa; font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.pipeline-card strong { color: var(--ink); font-size: 12px; }

/* About / trust */
.about { padding: 96px 0; background: linear-gradient(180deg,#fff,#f8fbff); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 74px; align-items: center; }
.about-copy h2 { color: var(--ink); font-size: clamp(36px,4vw,52px); line-height: 1.08; letter-spacing: -.04em; margin: 8px 0 18px; }
.about-copy p { color: var(--muted); font-size: 14px; }
.value-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 28px; }
.value { border: 1px solid var(--line); border-radius: 13px; padding: 16px; background: #fff; }
.value i { width: 32px; height: 32px; border-radius: 50%; background: #e7f2ff; color: var(--blue); display: grid; place-items: center; font-style: normal; font-size: 13px; margin-bottom: 10px; }
.value strong { display: block; color: var(--ink); font-size: 11px; }
.value small { color: #8190a5; font-size: 9px; }
.about-visual { min-height: 430px; position: relative; }
.about-card-main { position: absolute; inset: 25px 0 35px 45px; border-radius: 24px; background: linear-gradient(135deg,#0a4caa,#0b82ef); overflow: hidden; box-shadow: var(--shadow-lg); padding: 37px; color: #fff; }
.about-card-main:before { content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%; background: rgba(255,255,255,.09); right: -120px; top: -140px; }
.about-card-main .big-n { font-size: 140px; line-height: 1; font-weight: 950; opacity: .14; position: absolute; right: 24px; bottom: 10px; }
.about-card-main h3 { font-size: 28px; line-height: 1.1; margin: 115px 0 8px; max-width: 340px; }
.about-card-main p { max-width: 380px; color: #d8ebff; font-size: 12px; }
.about-float { position: absolute; z-index: 3; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); padding: 15px 18px; }
.about-float strong { display: block; color: var(--ink); font-size: 12px; }
.about-float small { color: var(--muted); font-size: 9px; }
.about-float.a { left: 0; top: 0; }
.about-float.b { right: -4px; bottom: 4px; }

/* Commercial CTA / pricing approach */
.commercial { background: linear-gradient(135deg,#0d63d7,#0a8fe2); color: #fff; position: relative; overflow: hidden; }
.commercial:before { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: rgba(255,255,255,.08); right: -120px; top: -240px; }
.commercial-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 55px; align-items: center; }
.commercial h2 { margin: 8px 0 14px; font-size: clamp(35px,4vw,52px); line-height: 1.08; letter-spacing: -.04em; }
.commercial p { color: #dceeff; max-width: 590px; }
.plan-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.plan-card { background: rgba(255,255,255,.96); border-radius: 15px; padding: 19px; color: var(--ink); box-shadow: 0 16px 38px rgba(3,57,125,.18); }
.plan-card small { display: block; color: #71809a; text-transform: uppercase; letter-spacing: .08em; font-size: 8px; }
.plan-card strong { display: block; margin: 4px 0 4px; font-size: 15px; }
.plan-card span { color: #71809a; font-size: 10px; }

/* Future products & insights */
.future-card { border: 1px dashed #b9cce1; border-radius: 18px; padding: 36px; text-align: center; background: linear-gradient(180deg,#fbfdff,#f4f9ff); }
.future-icon { width: 54px; height: 54px; border-radius: 16px; background: #e5f1ff; color: var(--blue); display: grid; place-items: center; margin: 0 auto 15px; font-size: 23px; }
.future-card h3 { color: var(--ink); margin: 0 0 7px; }
.future-card p { max-width: 570px; margin: auto; font-size: 13px; color: var(--muted); }
.insight-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.insight-card { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.insight-thumb { height: 158px; padding: 22px; display: flex; align-items: end; color: #fff; background: linear-gradient(145deg,#0c63d6,#22a4e9); }
.insight-card:nth-child(2) .insight-thumb { background: linear-gradient(145deg,#0a6f8e,#1dc1c2); }
.insight-card:nth-child(3) .insight-thumb { background: linear-gradient(145deg,#324fae,#7a5be6); }
.insight-thumb span { font-size: 32px; font-weight: 900; opacity: .9; }
.insight-body { padding: 20px; }
.insight-body small { color: var(--blue); font-size: 9px; font-weight: 850; text-transform: uppercase; letter-spacing: .07em; }
.insight-body h3 { margin: 7px 0 8px; color: var(--ink); font-size: 16px; line-height: 1.3; }
.insight-body p { margin: 0; color: var(--muted); font-size: 11px; }

/* General interior page hero */
.page-hero { padding: 80px 0 72px; background: linear-gradient(135deg,#073a8d,#086cda 60%,#05a1ce); color: #fff; position: relative; overflow: hidden; }
.page-hero:before { content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,.08); right: -140px; top: -300px; }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { font-size: 10px; color: #c9e3ff; margin-bottom: 16px; }
.page-hero h1 { margin: 0 0 16px; font-size: clamp(42px,5vw,64px); line-height: 1.05; letter-spacing: -.045em; max-width: 800px; }
.page-hero p { max-width: 700px; color: #dcecff; font-size: 16px; }

/* School product page */
.product-hero { padding: 64px 0 72px; background: linear-gradient(135deg,#06377e,#0869d5 60%,#0998d8); color: #fff; overflow: hidden; }
.product-hero-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.product-hero h1 { color: #fff; font-size: clamp(45px,5vw,65px); line-height: 1.05; letter-spacing: -.045em; margin: 0 0 17px; }
.product-hero p { color: #d7e9ff; font-size: 15px; max-width: 590px; }
.product-hero .hero-actions { margin-top: 25px; }
.product-shot { position: relative; min-height: 430px; display: grid; place-items: center; }
.product-shot .device-laptop { width: 520px; }
.product-shot .phone-frame { right: -8px; bottom: 28px; }
.feature-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 15px; }
.feature-card { border: 1px solid var(--line); border-radius: 15px; background: #fff; padding: 20px; min-height: 185px; }
.feature-card .feature-icon { width: 38px; height: 38px; border-radius: 9px; background: #e8f3ff; color: var(--blue); display: grid; place-items: center; font-size: 13px; font-weight: 900; }
.feature-card h3 { color: var(--ink); margin: 15px 0 7px; font-size: 15px; }
.feature-card p { color: var(--muted); font-size: 10px; margin: 0; }
.role-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 65px; align-items: center; }
.role-list { display: grid; gap: 11px; }
.role-item { display: flex; gap: 14px; border: 1px solid var(--line); border-radius: 13px; padding: 17px; background: #fff; }
.role-item > span { flex: 0 0 34px; height: 34px; border-radius: 9px; background: #e8f3ff; color: var(--blue); display: grid; place-items: center; font-size: 10px; font-weight: 900; }
.role-item strong { display: block; color: var(--ink); font-size: 12px; }
.role-item small { display: block; color: var(--muted); font-size: 9px; margin-top: 2px; }
.pricing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.pricing-card { border: 1px solid var(--line); border-radius: 17px; padding: 24px; background: #fff; position: relative; }
.pricing-card.featured { border-color: #70adf6; box-shadow: var(--shadow); }
.pricing-card .ribbon { position: absolute; top: 13px; right: 13px; background: #eaf4ff; color: var(--blue); font-size: 7px; text-transform: uppercase; letter-spacing: .06em; padding: 5px 7px; border-radius: 999px; font-weight: 850; }
.pricing-card h3 { color: var(--ink); font-size: 17px; margin: 0 0 5px; }
.pricing-card > p { color: var(--muted); font-size: 10px; min-height: 48px; }
.pricing-card ul { list-style: none; padding: 0; margin: 18px 0 22px; }
.pricing-card li { font-size: 10px; color: #536681; margin: 8px 0; }
.pricing-card li:before { content: "✓"; color: var(--success); font-weight: 900; margin-right: 7px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 42px; }
.contact-panel { border: 1px solid var(--line); border-radius: 18px; padding: 26px; background: #fff; box-shadow: var(--shadow-sm); }
.contact-panel h2, .contact-form h2 { color: var(--ink); margin: 0 0 8px; font-size: 24px; }
.contact-panel > p, .contact-form > p { color: var(--muted); font-size: 11px; }
.contact-method { display: flex; gap: 12px; align-items: center; margin: 19px 0; }
.contact-method > i { width: 39px; height: 39px; border-radius: 10px; background: #e7f2ff; color: var(--blue); display: grid; place-items: center; font-style: normal; font-size: 13px; font-weight: 900; }
.contact-method small { display: block; color: #8b99aa; font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.contact-method strong, .contact-method a { display: block; color: var(--ink); font-size: 11px; font-weight: 750; }
.contact-form { border: 1px solid var(--line); border-radius: 18px; padding: 28px; background: #fff; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; color: #455d7a; font-size: 9px; font-weight: 800; margin-top: 12px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid #d7e3ef; border-radius: 9px; padding: 11px 12px; background: #fbfdff; color: #233e60; outline: none; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: #6da9ee; box-shadow: 0 0 0 3px rgba(9,105,240,.08); }
.form-note { color: #8c9aac; font-size: 8px; margin-top: 10px; }

/* About page */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.story-card { min-height: 390px; border-radius: 22px; background: linear-gradient(145deg,#083f98,#0b83e6); position: relative; overflow: hidden; box-shadow: var(--shadow); color: #fff; padding: 38px; }
.story-card:after { content: "N"; position: absolute; right: 12px; bottom: -42px; font-size: 300px; font-weight: 950; color: rgba(255,255,255,.08); line-height: 1; }
.story-card strong { display: block; font-size: 32px; line-height: 1.1; max-width: 350px; margin-top: 140px; position: relative; z-index: 2; }
.story-copy h2 { color: var(--ink); font-size: clamp(35px,4vw,50px); line-height: 1.08; letter-spacing: -.035em; margin: 6px 0 18px; }
.story-copy p { color: var(--muted); font-size: 14px; }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.values-grid .value { padding: 24px; min-height: 175px; }
.values-grid .value i { width: 40px; height: 40px; }
.values-grid .value strong { font-size: 13px; margin-bottom: 5px; }
.values-grid .value small { font-size: 10px; }

/* Blog / insights */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.coming-soon { max-width: 760px; margin: auto; text-align: center; border: 1px dashed #b6cbe2; border-radius: 20px; padding: 58px 32px; background: #f8fbff; }
.coming-soon i { width: 60px; height: 60px; border-radius: 17px; display: grid; place-items: center; background: #e5f2ff; color: var(--blue); font-style: normal; font-size: 25px; margin: 0 auto 16px; }
.coming-soon h2 { color: var(--ink); font-size: 32px; margin: 0 0 10px; }
.coming-soon p { color: var(--muted); font-size: 13px; }

/* Privacy */
.legal-copy { max-width: 820px; margin: auto; }
.legal-copy h2 { color: var(--ink); margin: 34px 0 8px; }
.legal-copy p, .legal-copy li { color: #63738a; font-size: 13px; }
.notice-box { background: #fff7df; border: 1px solid #f0dda7; border-radius: 12px; padding: 17px; color: #66572f; font-size: 12px; }

/* Footer */
.site-footer { background: #082456; color: #cbd9ea; padding-top: 58px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .85fr .85fr 1.1fr; gap: 42px; padding-bottom: 40px; }
.site-footer .brand img { filter: brightness(0) invert(1); opacity: .96; }
.footer-brand p { max-width: 330px; font-size: 11px; color: #99aec9; }
.site-footer h4 { color: #fff; font-size: 11px; margin: 5px 0 15px; }
.site-footer a, .site-footer span { display: block; color: #a9bcd3; font-size: 10px; margin: 8px 0; }
.site-footer a:hover { color: #fff; }
.social-row { display: flex; gap: 8px; margin-top: 17px; }
.social-placeholder { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.10); color: #fff; display: grid !important; place-items: center; font-size: 9px !important; margin: 0 !important; cursor: default; }
.footer-bottom { min-height: 62px; border-top: 1px solid rgba(255,255,255,.09); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-bottom span, .footer-bottom a { margin: 0; font-size: 9px; }
.footer-links { display: flex; gap: 18px; }

/* Reveal motion */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .reveal { opacity: 1; transform: none; transition: none; } .btn { transition: none; } }

/* Responsive */
@media (max-width: 1080px) {
  .hero-grid, .product-hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 0; }
  .hero-art { max-width: 720px; width: 100%; margin: auto; }
  .feature-strip { grid-template-columns: repeat(3,1fr); }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .benefit-grid, .about-grid, .commercial-grid, .role-layout, .story-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 700px; width: 100%; margin: auto; }
  .feature-grid { grid-template-columns: repeat(3,1fr); }
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 790px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 74px 0; }
  .nav-wrap { min-height: 68px; }
  .brand img { width: 165px; }
  .nav-toggle { display: block; }
  .main-nav { position: absolute; top: 68px; left: 14px; right: 14px; display: flex; flex-direction: column; align-items: stretch; gap: 4px; padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow); opacity: 0; transform: translateY(-8px); pointer-events: none; transition: .2s ease; }
  .main-nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .main-nav > a:not(.btn) { padding: 10px 11px; }
  .main-nav > a:not(.btn):after { display: none; }
  .hero { padding-top: 42px; }
  .hero h1 { font-size: 48px; }
  .hero-art { min-height: 430px; }
  .hero-blob { width: 410px; height: 410px; right: 0; }
  .device-laptop { width: 520px; transform: scale(.78); transform-origin: center; }
  .phone-frame { right: 18px; bottom: 42px; width: 126px; }
  .demo-label { display: none; }
  .feature-strip { grid-template-columns: repeat(2,1fr); }
  .service-grid, .insight-grid, .blog-grid { grid-template-columns: 1fr; }
  .tablet-art { min-height: 360px; }
  .tablet-frame { width: 390px; transform: rotate(-5deg) scale(.88); }
  .check-grid { grid-template-columns: 1fr; }
  .value-row { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; justify-content: center; padding: 18px 0; }
}

@media (max-width: 520px) {
  .hero h1, .product-hero h1, .page-hero h1 { font-size: 40px; }
  .hero-lead { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-note { align-items: flex-start; }
  .hero-art { min-height: 350px; margin-top: 14px; }
  .hero-blob { width: 330px; height: 330px; right: -20px; }
  .device-laptop { width: 510px; transform: scale(.59); transform-origin: center; }
  .phone-frame { width: 105px; right: 2px; bottom: 40px; border-width: 5px; }
  .phone-ui { min-height: 185px; padding: 8px; }
  .phone-row:nth-of-type(n+4) { display: none; }
  .feature-strip, .service-grid, .plan-grid, .feature-grid, .pricing-grid, .values-grid { grid-template-columns: 1fr; }
  .feature-chip { min-height: 62px; }
  .tablet-art { min-height: 300px; }
  .tablet-frame { width: 400px; transform: scale(.67) rotate(-4deg); }
  .pipeline-card { grid-template-columns: 1fr; }
  .pipeline-card div { border-right: 0; border-bottom: 1px solid #e5edf6; padding-bottom: 10px; }
  .pipeline-card div:last-child { border-bottom: 0; }
  .about-visual { min-height: 380px; }
  .about-card-main { inset: 24px 0 24px 0; padding: 28px; }
  .about-card-main h3 { margin-top: 110px; }
  .about-float.a { left: 8px; }
  .about-float.b { right: 8px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-grid > div:last-child { grid-column: auto; }
}
