:root {
  --blue-950: #08255b;
  --blue-900: #0a347b;
  --blue-700: #0b4fcb;
  --blue-600: #1468ed;
  --blue-100: #dfeaff;
  --blue-50: #f3f7ff;
  --cyan: #19b7c7;
  --ink: #0c1930;
  --text: #384762;
  --muted: #68758c;
  --line: #dbe3ef;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(8, 37, 91, 0.13);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  word-break: keep-all;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 1000; transform: translateY(-160%); padding: 10px 16px; background: var(--ink); color: white; border-radius: 8px; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(219,227,239,.8); backdrop-filter: blur(12px); }
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-size: 1.08rem; font-weight: 800; letter-spacing: .12em; color: var(--blue-950); }
.brand-mark { width: 29px; height: 29px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: end; gap: 3px; padding: 6px; border-radius: 8px; background: var(--blue-700); }
.brand-mark span { display: block; background: white; border-radius: 2px; }
.brand-mark span:nth-child(1) { height: 45%; }
.brand-mark span:nth-child(2) { height: 90%; }
.brand-mark span:nth-child(3) { height: 65%; }
.primary-nav { display: flex; align-items: center; gap: 30px; font-size: .94rem; font-weight: 600; color: #30405d; }
.primary-nav a { position: relative; padding: 8px 0; }
.primary-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 2px; background: var(--blue-600); transition: right .2s ease; }
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { right: 0; }
.menu-button { display: none; border: 1px solid var(--line); border-radius: 9px; background: white; padding: 8px 12px; color: var(--ink); font-weight: 700; }

.hero { overflow: hidden; background: var(--blue-50); border-bottom: 1px solid var(--line); }
.hero-grid { min-height: 690px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 78px; padding-block: 72px; }
.eyebrow, .section-kicker { margin: 0 0 18px; color: var(--blue-600); font-size: .78rem; font-weight: 800; letter-spacing: .16em; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 24px; font-size: clamp(2.9rem, 5.4vw, 4.85rem); line-height: 1.14; letter-spacing: -.055em; }
.hero-description { max-width: 620px; margin-bottom: 32px; color: var(--text); font-size: 1.17rem; line-height: 1.85; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 29px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 0 23px; border: 1px solid transparent; border-radius: 10px; font-weight: 700; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, button:focus-visible, a:focus-visible, summary:focus-visible { outline: 3px solid rgba(20,104,237,.28); outline-offset: 3px; }
.button-primary { background: var(--blue-700); color: white; box-shadow: 0 12px 28px rgba(11,79,203,.2); }
.button-primary:hover { background: var(--blue-900); }
.button-secondary { background: white; color: var(--blue-900); border-color: #c7d6ed; }
.launch-note { display: flex; align-items: center; gap: 10px; color: #4a5a75; font-size: .92rem; }
.status-indicator { width: 9px; height: 9px; border: 2px solid var(--cyan); border-radius: 50%; }

.product-stage { position: relative; min-height: 570px; border: 1px solid #cad8ee; border-radius: 34px; background: #e7efff; overflow: hidden; }
.stage-grid { position: absolute; inset: 0; opacity: .36; background-image: linear-gradient(#b9cbed 1px, transparent 1px), linear-gradient(90deg, #b9cbed 1px, transparent 1px); background-size: 42px 42px; }
.screen { overflow: hidden; background: white; border: 7px solid white; border-radius: 27px; box-shadow: var(--shadow); }
.screen img { width: 100%; height: 100%; object-fit: cover; }
.screen-back { position: absolute; width: 240px; height: 426px; left: 48px; top: 92px; transform: rotate(-5deg); }
.screen-front { position: absolute; width: 266px; height: 473px; right: 43px; top: 44px; transform: rotate(4deg); }
.stage-label { position: absolute; top: 25px; left: 28px; font-weight: 800; letter-spacing: .12em; color: var(--blue-900); }
.prototype-note { position: absolute; right: 24px; bottom: 17px; margin: 0; color: #586a87; font-size: .76rem; font-weight: 500; }

.trust-strip { border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid p { margin: 0; min-height: 92px; display: flex; align-items: center; gap: 12px; padding: 20px; border-right: 1px solid var(--line); color: #33415b; font-size: .9rem; font-weight: 600; }
.trust-grid p:first-child { border-left: 1px solid var(--line); }
.trust-grid span { color: var(--blue-600); font-size: .74rem; font-weight: 800; }

.section { padding-block: 118px; }
h2 { margin-bottom: 24px; font-size: clamp(2.15rem, 4.2vw, 3.75rem); line-height: 1.25; letter-spacing: -.045em; }
h3 { margin-bottom: 9px; font-size: 1.12rem; line-height: 1.45; }
.section-heading { max-width: 680px; margin-bottom: 54px; }
.section-heading > p:last-child { color: var(--text); font-size: 1.06rem; }
.section-heading.compact { margin-bottom: 0; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; align-items: start; }
.about-copy { padding-top: 35px; color: var(--text); font-size: 1.08rem; }
.about-copy p { margin-bottom: 22px; }

.service-section { background: var(--ink); color: white; }
.service-section .section-kicker { color: #6bd8e2; }
.service-section .section-heading > p:last-child { color: #bac7da; }
.flow-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #344159; border-bottom: 1px solid #344159; }
.flow-card { padding: 42px 38px 45px; border-right: 1px solid #344159; }
.flow-card:last-child { border-right: 0; }
.flow-number { display: block; margin-bottom: 62px; color: #6bd8e2; font-size: .78rem; font-weight: 800; }
.flow-card p { margin-bottom: 0; color: #afbdd1; }

.features-layout { display: grid; grid-template-columns: 1fr .78fr; gap: 100px; align-items: center; }
.feature-list { border-top: 1px solid var(--line); }
.feature-list article { display: grid; grid-template-columns: 42px 1fr; gap: 15px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.feature-list article > span { color: var(--blue-600); font-size: .78rem; font-weight: 800; }
.feature-list p { margin-bottom: 0; color: var(--text); }
.feature-visual { position: relative; min-height: 640px; display: flex; align-items: center; justify-content: center; background: #e7efff; border: 1px solid #cad8ee; border-radius: 28px; overflow: hidden; }
.feature-visual::before { content: "SAINNECT"; position: absolute; left: -30px; top: 50%; transform: rotate(-90deg); color: #b5c8ea; font-size: .78rem; font-weight: 800; letter-spacing: .2em; }
.screen-single { width: 300px; height: 533px; position: relative; z-index: 1; }
.visual-caption { position: absolute; right: 20px; top: 25px; display: grid; gap: 8px; }
.visual-caption span { display: block; padding: 7px 10px; border: 1px solid #bbcae2; border-radius: 7px; background: white; color: #33415b; font-size: .74rem; font-weight: 700; }

.industries-section { background: var(--blue-50); border-block: 1px solid var(--line); }
.industries-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; align-items: start; }
.industry-list { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #cbd8ec; border-left: 1px solid #cbd8ec; }
.industry-list span { min-height: 96px; display: flex; align-items: center; padding: 20px; border-right: 1px solid #cbd8ec; border-bottom: 1px solid #cbd8ec; color: #2f405f; font-weight: 600; }

.pricing-header { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: end; margin-bottom: 55px; }
.billing-toggle { display: flex; padding: 4px; border: 1px solid #cad6e8; border-radius: 11px; background: var(--blue-50); }
.billing-toggle button { min-height: 42px; padding: 0 15px; border: 0; border-radius: 7px; background: transparent; color: #52617a; font-size: .86rem; font-weight: 700; cursor: pointer; }
.billing-toggle button.active { background: var(--blue-700); color: white; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-card { display: flex; flex-direction: column; min-height: 450px; padding: 34px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.price-card.emphasized { border: 2px solid var(--blue-600); box-shadow: 0 18px 45px rgba(11,79,203,.1); }
.plan-name { margin-bottom: 4px; font-size: 1.34rem; font-weight: 800; color: var(--blue-900); }
.plan-description { color: var(--muted); }
.price { display: flex; align-items: baseline; gap: 7px; margin: 28px 0 3px; }
.price strong { font-size: 2.35rem; letter-spacing: -.04em; }
.price span { color: var(--muted); font-size: .84rem; }
.annual-detail { min-height: 27px; color: var(--blue-600); font-size: .8rem; font-weight: 600; }
.price-card ul { list-style: none; padding: 24px 0 0; margin: auto 0 0; border-top: 1px solid var(--line); }
.price-card li { padding: 7px 0; color: #46546c; }
.price-card li::before { content: "—"; margin-right: 9px; color: var(--blue-600); }
.pricing-note { margin: 25px 0 0; color: var(--muted); font-size: .84rem; }

.security-section { background: var(--blue-950); color: white; }
.security-section .section-kicker { color: #6bd8e2; }
.security-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.security-points { border-top: 1px solid #39527b; }
.security-points article { padding: 27px 0; border-bottom: 1px solid #39527b; }
.security-points p { margin: 0; color: #b7c5d9; }

.faq-grid { display: grid; grid-template-columns: .6fr 1.4fr; gap: 100px; align-items: start; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { position: relative; cursor: pointer; list-style: none; padding: 25px 52px 25px 0; font-size: 1.04rem; font-weight: 700; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; position: absolute; right: 8px; top: 20px; color: var(--blue-600); font-size: 1.45rem; font-weight: 400; }
.accordion details[open] summary::after { content: "−"; }
.accordion details p { padding: 0 52px 25px 0; margin: 0; color: var(--text); }

.closing-section { padding-block: 110px; background: var(--blue-700); color: white; text-align: center; }
.closing-inner { max-width: 790px; }
.closing-section .section-kicker { color: #bfeef2; }
.closing-section h2 { margin-inline: auto; }
.closing-section p:not(.section-kicker) { max-width: 670px; margin: 0 auto 30px; color: #d9e6ff; }
.button-light { background: white; color: var(--blue-900); }

.site-footer { padding-block: 55px; background: #08162d; color: white; }
.footer-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.footer-brand { margin-bottom: 15px; color: white; }
.site-footer p { margin-bottom: 8px; color: #93a1b7; font-size: .84rem; }
.footer-meta { text-align: right; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; min-height: 0; gap: 48px; padding-block: 70px 85px; }
  .product-stage { min-height: 550px; max-width: 620px; width: 100%; margin-inline: auto; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid p:nth-child(3) { border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
  .trust-grid p:nth-child(4) { border-top: 1px solid var(--line); }
  .about-grid, .features-layout, .industries-grid, .security-grid, .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-copy { padding-top: 0; }
  .feature-visual { max-width: 560px; width: 100%; margin-inline: auto; }
  .pricing-header { grid-template-columns: 1fr; align-items: start; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { min-height: 0; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 68px; }
  .menu-button { display: block; }
  .primary-nav { display: none; position: absolute; top: 67px; left: 0; right: 0; padding: 14px 20px 20px; background: white; border-bottom: 1px solid var(--line); box-shadow: 0 18px 30px rgba(8,37,91,.08); }
  .primary-nav.open { display: grid; gap: 4px; }
  .primary-nav a { padding: 11px 8px; }
  h1 { font-size: clamp(2.55rem, 12vw, 3.65rem); }
  h2 { font-size: clamp(2rem, 9vw, 3rem); }
  .hero-grid { padding-top: 55px; }
  .hero-description { font-size: 1.04rem; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .product-stage { min-height: 450px; border-radius: 24px; }
  .screen-back { width: 190px; height: 337px; left: 18px; top: 78px; }
  .screen-front { width: 210px; height: 373px; right: 16px; top: 45px; }
  .prototype-note { left: 18px; right: auto; bottom: 13px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid p { min-height: 72px; border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
  .trust-grid p:first-child { border-top: 0; }
  .section { padding-block: 84px; }
  .flow-grid { grid-template-columns: 1fr; }
  .flow-card { border-right: 0; border-bottom: 1px solid #344159; }
  .flow-card:last-child { border-bottom: 0; }
  .flow-number { margin-bottom: 32px; }
  .feature-visual { min-height: 540px; }
  .screen-single { width: 245px; height: 435px; }
  .visual-caption { display: none; }
  .industry-list { grid-template-columns: repeat(2, 1fr); }
  .industry-list span { min-height: 82px; padding: 16px; font-size: .9rem; }
  .pricing-header { gap: 25px; }
  .billing-toggle { width: 100%; }
  .billing-toggle button { flex: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-meta { text-align: left; }
}

/* H5 role clarity and compact value cards */
.value-grid article { background:#10213d; border:1px solid #38557f; border-radius:12px; box-shadow:none; }
.value-grid article::before { right:22px; top:22px; width:110px; height:110px; border:1px solid rgba(107,216,226,.2); box-shadow:0 0 0 14px rgba(107,216,226,.035); }
.value-grid article::after { right:53px; top:57px; font-size:1.35rem; }
.value-grid article > span { width:auto; height:auto; margin-bottom:42px; border:0; border-radius:0; background:none; justify-content:start; color:#6bd8e2; font-size:3.6rem; line-height:1; letter-spacing:-.08em; }
.value-grid h3 { font-size:1.38rem; }
.values-section .section-heading { display:flex; align-items:end; justify-content:space-between; gap:28px; margin-bottom:28px; }
.values-section .section-heading h2 { max-width:620px; }
.value-grid { gap:14px; }
.value-grid article { position:relative; min-height:258px; padding:24px; border:1px solid #2f4770; border-radius:16px; background:linear-gradient(145deg,#122342,#0b1932); overflow:hidden; box-shadow:0 16px 30px rgba(5,18,42,.16); }
.value-grid article::before { content:""; position:absolute; right:18px; top:18px; width:74px; height:74px; border:1px solid rgba(107,216,226,.38); border-radius:50%; box-shadow:0 0 0 12px rgba(107,216,226,.05), 0 0 0 24px rgba(107,216,226,.03); }
.value-grid article::after { content:"↗"; position:absolute; right:34px; top:35px; color:#6bd8e2; font-size:1.15rem; font-weight:700; }
.value-grid article:nth-child(2)::after { content:"+"; }
.value-grid article:nth-child(3)::after { content:"○"; }
.value-grid article > span { position:relative; z-index:1; display:grid; place-items:center; width:54px; height:54px; margin-bottom:36px; border:1px solid #6bd8e2; border-radius:50%; color:#6bd8e2; background:rgba(107,216,226,.08); font-size:1.2rem; font-weight:800; }
.value-grid h3 { position:relative; z-index:1; margin-bottom:8px; font-size:1.32rem; color:#fff; }
.value-grid p { position:relative; z-index:1; max-width:30ch; color:#c6d4eb; font-size:.95rem; }
.role-section { background:var(--blue-50); border-block:1px solid var(--line); }
.role-heading { display:flex; align-items:end; justify-content:space-between; gap:32px; margin-bottom:28px; }
.role-heading h2 { margin-bottom:0; }
.role-heading > p { max-width:360px; margin:0 0 4px; }
.role-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; }
.role-card { position:relative; min-height:290px; padding:30px; border:1px solid var(--line); border-radius:18px; overflow:hidden; box-shadow:0 14px 30px rgba(8,37,91,.07); }
.role-card::after { content:""; position:absolute; right:-34px; bottom:-45px; width:160px; height:160px; border:1px solid currentColor; border-radius:50%; opacity:.14; box-shadow:0 0 0 18px transparent, 0 0 0 19px currentColor; }
.role-admin { color:#fff; background:linear-gradient(145deg,#122342,#0b1932); border-color:#30476d; }
.role-user { color:var(--ink); background:#fff; }
.role-badge { display:inline-flex; position:relative; z-index:1; margin-bottom:44px; padding:7px 11px; border:1px solid currentColor; border-radius:999px; color:#6bd8e2; font-size:.78rem; font-weight:800; letter-spacing:.04em; }
.role-user .role-badge { color:var(--blue-600); }
.role-card h3 { position:relative; z-index:1; margin-bottom:16px; font-size:1.45rem; }
.role-card ul { position:relative; z-index:1; display:grid; gap:10px; margin:0; padding:0; list-style:none; }
.role-card li { padding-left:18px; color:#c6d4eb; font-size:.95rem; }
.role-card li::before { content:""; position:absolute; margin:7px 0 0 -15px; width:6px; height:6px; border-radius:50%; background:#6bd8e2; }
.role-user li { color:var(--muted); }
.features-roles { background:#fff; }
.role-screens { align-items:start; }
.role-screens figure { display:grid; gap:14px; margin:0; }
.role-screens .screen { width:100%; max-width:none; border-radius:16px; }
.role-screens figcaption { display:grid; gap:5px; padding:0 4px; text-align:left; }
.role-screens figcaption span { color:var(--blue-600); font-size:.76rem; font-weight:800; letter-spacing:.03em; }
.role-screens figcaption strong { color:var(--ink); font-size:1.08rem; }
.role-screens figcaption small { color:var(--muted); font-size:.88rem; line-height:1.6; }
.screen-role-group + .screen-role-group { margin-top:52px; }
.screen-role-heading { display:grid; grid-template-columns:auto 1fr; column-gap:12px; align-items:baseline; margin-bottom:18px; }
.screen-role-heading > span { color:var(--blue-600); font-size:.8rem; font-weight:800; }
.screen-role-heading h3 { margin:0; font-size:1.5rem; }
.screen-role-heading p { grid-column:2; margin:4px 0 0; color:var(--muted); }
.user-screen-group .role-screens { grid-template-columns:minmax(0, 1fr); max-width:420px; }
.five-screens { grid-template-columns:repeat(3,minmax(0,1fr)); }
.user-screen-group .five-screens { max-width:none; grid-template-columns:repeat(3,minmax(0,1fr)); }
.mockup-section { background:#f7faff; border-block:1px solid var(--line); }
.screens-section { display:none; }
.mockup-grid article:nth-child(n+4) { display:none; }
.mockup-role + .mockup-role { margin-top:64px; }
.mockup-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.mockup-grid article { padding:18px; border:1px solid var(--line); border-radius:16px; background:#fff; box-shadow:0 10px 24px rgba(8,37,91,.06); }
.mockup-grid h4 { margin:15px 0 5px; font-size:1.08rem; }
.mockup-grid article p { margin:0; color:var(--muted); font-size:.88rem; line-height:1.55; }
.ui-mockup { min-height:190px; padding:18px; border-radius:11px; color:#183052; background:#eef4ff; border:1px solid #d1def3; font-size:.78rem; }
.ui-mockup b { display:block; margin-bottom:17px; color:#0d2851; font-size:.9rem; }
.metric-row { display:grid; grid-template-columns:repeat(3,1fr); gap:6px; }.metric-row i { padding:10px 4px; border-radius:6px; background:#fff; color:#1762d2; font-style:normal; font-size:.7rem; text-align:center; }
.mini-bars { display:flex; align-items:end; gap:8px; height:70px; margin-top:17px; padding:10px; border-radius:8px; background:#fff; }.mini-bars span { flex:1; background:#4f8cf0; border-radius:3px 3px 0 0; }.mini-bars span:nth-child(1){height:35%}.mini-bars span:nth-child(2){height:60%}.mini-bars span:nth-child(3){height:45%}.mini-bars span:nth-child(4){height:82%}
.mock-list, .space-grid { display:grid; gap:7px; }.mock-list span, .space-grid span, .policy-line, .notice-line, .booking-item { display:flex; justify-content:space-between; gap:8px; padding:9px; border-radius:6px; background:#fff; }.mock-list em, .space-grid em { color:#1d8b62; font-style:normal; font-size:.68rem; }.mock-list span:last-child em, .space-grid span:nth-child(3) em { color:#a67819; }
.ui-mockup button { width:100%; margin-top:12px; padding:9px; border:0; border-radius:6px; color:#fff; background:#1762d2; font-size:.75rem; }.user-row { display:flex; align-items:center; gap:7px; margin-top:10px; padding:10px; border-radius:7px; background:#fff; }.user-row button { width:auto; margin:0 0 0 auto; padding:5px 8px; }.avatar { width:23px; height:23px; border-radius:50%; background:#a9c4f4; }
.policy-line { display:block; margin-bottom:8px; }.policy-line strong { display:block; margin-top:4px; color:#1762d2; }.toggle { margin-top:16px; display:flex; justify-content:space-between; padding:10px; background:#fff; border-radius:6px; }.toggle i { width:28px; height:16px; border-radius:20px; background:#4f8cf0; }
.calendar-head { padding:8px 0; color:#6c83a4; word-spacing:9px; }.calendar-days { display:grid; grid-template-columns:repeat(7,1fr); gap:5px; }.calendar-days i { display:grid; place-items:center; height:23px; border-radius:5px; background:#fff; font-style:normal; }.calendar-days .selected { color:#fff; background:#1762d2; }.booking-mock label { display:flex; justify-content:space-between; padding:9px; margin-top:7px; border-radius:6px; background:#fff; }.booking-mock label strong { color:#1762d2; font-weight:600; }.booking-item { display:block; margin-bottom:9px; }.booking-item span { display:block; margin-top:5px; color:#6c83a4; font-size:.7rem; }.org-choice { padding:12px; margin-top:8px; border:1px solid #d1def3; border-radius:7px; background:#fff; }.org-choice.active { border-color:#1762d2; box-shadow:0 0 0 2px #dce9ff; }.org-choice small { display:block; margin:4px 0 0 17px; color:#6c83a4; }.notice-line { margin-bottom:8px; }.notice-line em { color:#1762d2; font-style:normal; font-size:.7rem; }
@media (max-width:900px) { .mockup-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width:720px) { .mockup-grid { grid-template-columns:1fr; } }
.five-screens figure:nth-child(4), .five-screens figure:nth-child(5) { grid-column:span 1; }
@media (max-width:720px) {
  .screen-role-heading { grid-template-columns:auto 1fr; }
  .screen-role-heading p { grid-column:1 / -1; margin-top:8px; }
  .user-screen-group .role-screens { max-width:none; }
  .five-screens { grid-template-columns:1fr; }
  .user-screen-group .five-screens { grid-template-columns:1fr; }
}
@media (max-width:720px) {
  .values-section .section-heading, .role-heading { display:block; }
  .values-section .section-heading > p, .role-heading > p { margin-top:14px; }
  .role-grid { grid-template-columns:1fr; }
  .role-card { min-height:0; }
}

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

/* H2: compact home and dedicated menu pages */
.primary-nav a.active { color: var(--blue-700); }
.primary-nav a.active::after { right: 0; }
.lead-copy { color: var(--text); font-size: 1.08rem; line-height: 1.85; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-700); font-weight: 700; }
.text-link span { transition: transform .18s ease; }
.text-link:hover span { transform: translateX(4px); }

.home-intro { background: white; }
.home-intro-grid { display: grid; grid-template-columns: 1fr .78fr; gap: 100px; align-items: center; }
.home-intro-grid .lead-copy { max-width: 630px; margin-bottom: 27px; }
.compact-screen-wrap { position: relative; min-height: 540px; display: flex; align-items: center; justify-content: center; overflow: hidden; border: 1px solid #cad8ee; border-radius: 28px; background: #e7efff; }
.compact-screen { width: 245px; height: 435px; position: relative; z-index: 1; }
.compact-caption { position: absolute; right: 18px; top: 24px; display: grid; gap: 8px; }
.compact-caption span { padding: 7px 10px; border: 1px solid #bbcae2; border-radius: 7px; background: white; color: #33415b; font-size: .74rem; font-weight: 700; }

.home-features { background: var(--blue-50); border-top: 1px solid var(--line); }
.home-heading { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.home-heading h2 { margin-bottom: 0; }
.summary-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #cbd8ec; border-left: 1px solid #cbd8ec; }
.summary-grid article { min-height: 275px; padding: 30px 26px; border-right: 1px solid #cbd8ec; border-bottom: 1px solid #cbd8ec; }
.summary-grid article > span, .value-grid article > span { display: block; margin-bottom: 62px; color: var(--blue-600); font-size: .76rem; font-weight: 800; }
.summary-grid p, .value-grid p { margin: 0; color: var(--text); font-size: .94rem; }
.compact-closing { padding-block: 85px; }

.sub-hero { padding-block: 112px; overflow: hidden; background: var(--blue-50); border-bottom: 1px solid var(--line); }
.sub-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 100px; align-items: end; }
.sub-hero h1 { margin-bottom: 0; font-size: clamp(2.7rem, 5.2vw, 4.6rem); }
.sub-hero-grid > p, .sub-hero-grid > div:last-child > p { margin: 0 0 8px; color: var(--text); font-size: 1.1rem; line-height: 1.9; }
.service-sub-hero .launch-note { margin-top: 23px; }

.statement-grid { display: grid; grid-template-columns: .55fr 1.45fr; gap: 100px; align-items: start; }
.statement-label { color: var(--blue-600); font-size: .76rem; font-weight: 800; letter-spacing: .16em; }
.statement-grid .lead-copy { max-width: 720px; }
.values-section { background: var(--ink); color: white; }
.values-section .section-kicker { color: #6bd8e2; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #344159; border-left: 1px solid #344159; }
.value-grid article { min-height: 310px; padding: 34px; border-right: 1px solid #344159; border-bottom: 1px solid #344159; }
.value-grid article > span { color: #6bd8e2; }
.value-grid p { color: #afbdd1; }
.light-flow { border-color: var(--line); }
.light-flow .flow-card { border-color: var(--line); }
.light-flow .flow-card p { color: var(--text); }
.light-flow .flow-number { color: var(--blue-600); }
.interface-section { background: var(--ink); color: white; }
.interface-grid { display: grid; grid-template-columns: .72fr 1fr; gap: 100px; align-items: center; }
.interface-grid > .screen { justify-self: center; }
.interface-section .section-kicker { color: #6bd8e2; }
.interface-section .lead-copy { color: #bac7da; }
.dash-list { list-style: none; margin: 25px 0 0; padding: 22px 0 0; border-top: 1px solid var(--line); }
.dash-list li { padding: 7px 0; color: inherit; }
.dash-list li::before { content: "—"; margin-right: 10px; color: var(--blue-600); }
.interface-section .dash-list { border-color: #344159; color: #c4cfdf; }
.interface-section .dash-list li::before { color: #6bd8e2; }

.feature-detail-grid { border-top: 1px solid var(--line); }
.feature-detail-grid > article { display: grid; grid-template-columns: 80px 1fr; gap: 34px; padding: 62px 0; border-bottom: 1px solid var(--line); }
.feature-detail-grid > article > span { color: var(--blue-600); font-size: .8rem; font-weight: 800; }
.feature-detail-grid article > div { display: grid; grid-template-columns: .8fr 1fr; gap: 60px; align-items: start; }
.feature-detail-grid h2 { margin: 0; font-size: clamp(1.7rem, 3vw, 2.5rem); }
.feature-detail-grid article > div > p { margin: 0; color: var(--text); }
.feature-detail-grid .dash-list { grid-column: 2; margin-top: -5px; }
.screens-section { background: var(--blue-50); border-block: 1px solid var(--line); }
.screen-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.screen-gallery figure { margin: 0; }
.screen-gallery .screen { width: min(100%, 290px); aspect-ratio: 9 / 16; margin-inline: auto; }
.screen-gallery figcaption { margin-top: 18px; text-align: center; color: var(--text); font-size: .9rem; font-weight: 600; }

.trial-copy { margin-bottom: 4px; color: var(--blue-900); font-size: 1.08rem; font-weight: 700; }
.muted-copy { margin: 0; color: var(--muted); font-size: .86rem; }
.payment-note { margin-top: 56px; padding: 36px 40px; border: 1px solid var(--line); border-radius: 18px; background: var(--blue-50); }
.payment-note h2 { margin-bottom: 10px; font-size: 1.45rem; }
.payment-note p { margin: 0; color: var(--text); }

.faq-page-grid { display: grid; grid-template-columns: .55fr 1.45fr; gap: 100px; align-items: start; }
.faq-aside { color: var(--text); line-height: 1.85; }

@media (max-width: 980px) {
  .home-intro-grid, .sub-hero-grid, .statement-grid, .interface-grid, .faq-page-grid { grid-template-columns: 1fr; gap: 48px; }
  .summary-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: 1fr; }
  .value-grid article { min-height: 0; }
  .feature-detail-grid article > div { grid-template-columns: 1fr; gap: 20px; }
  .feature-detail-grid .dash-list { grid-column: auto; margin-top: 8px; }
  .sub-hero { padding-block: 90px; }
}

@media (max-width: 720px) {
  .home-heading { align-items: start; flex-direction: column; gap: 18px; }
  .summary-grid { grid-template-columns: 1fr; }
  .summary-grid article { min-height: 0; }
  .summary-grid article > span, .value-grid article > span { margin-bottom: 34px; }
  .compact-caption { display: none; }
  .sub-hero { padding-block: 70px; }
  .sub-hero-grid { gap: 26px; }
  .feature-detail-grid > article { grid-template-columns: 42px 1fr; gap: 10px; padding: 45px 0; }
  .screen-gallery { grid-template-columns: 1fr; gap: 45px; }
  .payment-note { padding: 28px 24px; }
}

/* H4 visual density pass */
.section { padding-block: 78px; }
.sub-hero { position: relative; padding-block: 72px; overflow: hidden; }
.sub-hero::before { content: ""; position: absolute; width: 430px; height: 430px; right: -100px; top: -170px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, rgba(20,104,237,.18), rgba(20,104,237,.04) 55%, transparent 56%); }
.sub-hero::after { content: ""; position: absolute; right: 8%; bottom: 30px; width: 170px; height: 92px; opacity: .45; background-image: linear-gradient(#b7c9e8 1px, transparent 1px), linear-gradient(90deg, #b7c9e8 1px, transparent 1px); background-size: 18px 18px; transform: rotate(-8deg); }
.sub-hero-grid { position: relative; z-index: 1; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; min-height: 300px; }
.sub-hero h1 { max-width: 760px; font-size: clamp(2.45rem, 4.5vw, 4rem); line-height: 1.2; text-wrap: balance; }
.sub-hero-grid > p, .sub-hero-grid > div:last-child { position: relative; z-index: 1; padding: 28px 30px; border: 1px solid #cbd9ee; border-radius: 18px; background: rgba(255,255,255,.82); box-shadow: 0 18px 45px rgba(8,37,91,.08); }
.sub-hero-grid > div:last-child > p { margin-bottom: 0; }
.service-sub-hero .sub-hero-grid > div:last-child { background: rgba(255,255,255,.9); }
.service-sub-hero .launch-note { margin-top: 20px; }

.statement-grid { grid-template-columns: .72fr 1.28fr; gap: 72px; }
.statement-rail { min-height: 310px; }
.direction-visual { display: grid; gap: 10px; margin-top: 30px; padding: 18px; border: 1px solid #cbd9ee; border-radius: 18px; background: linear-gradient(145deg, #f3f7ff, #e5efff); box-shadow: 0 16px 35px rgba(8,37,91,.07); }
.direction-visual div { display: grid; grid-template-columns: 35px 1fr auto; gap: 10px; align-items: center; padding: 12px 10px; border-radius: 10px; background: rgba(255,255,255,.76); }
.direction-visual span { color: var(--blue-600); font-size: .72rem; font-weight: 800; }
.direction-visual strong { color: var(--ink); font-size: .94rem; }
.direction-visual small { color: var(--muted); font-size: .74rem; }
.statement-grid h2 { margin-bottom: 18px; font-size: clamp(2rem, 3.6vw, 3.2rem); }
.values-section { padding-block: 82px; }
.value-grid article { min-height: 245px; padding: 28px; }
.value-grid article > span { margin-bottom: 42px; }

.flow-grid { gap: 14px; border: 0; }
.light-flow .flow-card { border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: 0 12px 28px rgba(8,37,91,.05); }
.flow-card { padding: 28px; }
.flow-number { margin-bottom: 34px; }
.interface-section { padding-block: 82px; }
.interface-grid { gap: 72px; }
.industries-section { padding-block: 76px; }
.industry-list span { min-height: 78px; padding: 16px; }

.feature-detail-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; border: 0; }
.feature-detail-grid > article { display: block; min-height: 285px; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 12px 30px rgba(8,37,91,.05); }
.feature-detail-grid > article > span { display: block; margin-bottom: 28px; }
.feature-detail-grid article > div { display: block; }
.feature-detail-grid h2 { margin-bottom: 12px; font-size: clamp(1.55rem, 2.4vw, 2.15rem); }
.feature-detail-grid article > div > p { margin-bottom: 15px; }
.feature-detail-grid .dash-list { margin-top: 0; padding-top: 12px; }
.screens-section { padding-block: 78px; }
.screen-gallery { gap: 18px; }
.screen-gallery .screen { width: min(100%, 250px); }
.security-section { padding-block: 82px; }
.pricing-section { padding-top: 62px; }
.price-card { min-height: 385px; padding: 28px; }
.payment-note { margin-top: 36px; padding: 28px 32px; }
.faq-section { padding-top: 62px; }
.faq-page-grid { gap: 60px; }
.faq-page-grid > div:first-child { padding: 26px; border: 1px solid #cbd9ee; border-radius: 16px; background: var(--blue-50); }
.faq-aside { margin-bottom: 20px; }
.faq-page-grid .accordion { padding: 0 24px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: 0 12px 30px rgba(8,37,91,.05); }
.accordion details:last-child { border-bottom: 0; }

@media (max-width: 980px) {
  .sub-hero-grid { min-height: 0; }
  .direction-visual { max-width: 560px; }
  .feature-detail-grid { grid-template-columns: 1fr; }
  .feature-detail-grid > article { min-height: 0; }
}

@media (max-width: 720px) {
  .section { padding-block: 62px; }
  .sub-hero { padding-block: 58px; }
  .sub-hero::after { right: 7%; bottom: 18px; transform: scale(.8) rotate(-8deg); }
  .sub-hero-grid > p, .sub-hero-grid > div:last-child { padding: 22px; }
  .direction-visual div { grid-template-columns: 32px 1fr; }
  .direction-visual small { grid-column: 2; }
  .value-grid article { min-height: 0; }
  .faq-page-grid .accordion { padding: 0 15px; }
}
