@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@600;700;800&display=swap");

:root {
  --ink: #10233a;
  --ink-strong: #071b31;
  --muted: #687c91;
  --muted-soft: #8b9aac;
  --line: #dfe7ef;
  --line-strong: #ced9e4;
  --canvas: #f5f8fb;
  --white: #ffffff;
  --blue: #1769e0;
  --blue-2: #0c8fe8;
  --cyan: #14b8d4;
  --navy: #0a2540;
  --navy-2: #103a63;
  --green: #0f9f6e;
  --green-bg: #eaf9f3;
  --amber: #b86a10;
  --amber-bg: #fff7e8;
  --danger: #be3e50;
  --danger-bg: #fff0f2;
  --shadow-sm: 0 8px 24px rgba(15, 39, 65, .06);
  --shadow-md: 0 20px 60px rgba(15, 39, 65, .10);
  --shadow-lg: 0 32px 90px rgba(10, 37, 64, .14);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
svg { display: block; }
::selection { background: #cde5ff; color: var(--navy); }

.page-shell { width: min(1460px, calc(100% - 48px)); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(217, 228, 238, .88);
  background: rgba(255, 255, 255, .90);
  backdrop-filter: blur(18px) saturate(160%);
}
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 44px; height: 44px; display: grid; place-items: center; overflow: hidden;
  border: 1px solid #dbe7f1; border-radius: 13px; background: #f8fbfe;
  box-shadow: 0 5px 16px rgba(20, 60, 100, .07);
}
.brand-mark img { width: 41px; height: 41px; object-fit: contain; }
.brand-copy { display: grid; gap: 2px; }
.brand-copy strong { color: var(--navy); font-family: "Manrope", sans-serif; font-size: 16px; letter-spacing: -.025em; }
.brand-copy small { color: #7b8da0; font-size: 9px; font-weight: 700; letter-spacing: .035em; text-transform: uppercase; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-trust { display: inline-flex; align-items: center; gap: 7px; color: #6d8093; font-size: 10px; font-weight: 600; }
.header-trust i { width: 7px; height: 7px; border-radius: 50%; background: #18aa79; box-shadow: 0 0 0 4px #e7f7f1; }
.header-cta {
  min-height: 39px; display: inline-flex; align-items: center; gap: 8px; padding: 0 14px;
  border: 1px solid #d5e1ec; border-radius: 10px; background: #fff; color: var(--navy);
  font-size: 10px; font-weight: 800; box-shadow: 0 4px 14px rgba(21, 60, 98, .05);
  transition: .18s ease;
}
.header-cta:hover { border-color: #b8ccdf; transform: translateY(-1px); }
.header-cta span { color: var(--blue); font-size: 13px; }

/* Hero */
.hero {
  position: relative; overflow: hidden; padding: 88px 0 92px;
  border-bottom: 1px solid #e3eaf1;
  background:
    radial-gradient(circle at 83% 16%, rgba(40, 152, 227, .13), transparent 26rem),
    radial-gradient(circle at 12% 86%, rgba(18, 185, 212, .08), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}
.hero-backdrop {
  position: absolute; inset: 0; pointer-events: none; opacity: .48;
  background-image:
    linear-gradient(rgba(26, 74, 117, .038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 74, 117, .038) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to right, transparent 0%, black 20%, black 85%, transparent 100%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(520px, .92fr); gap: clamp(60px, 7vw, 110px); align-items: center; }
.hero-copy { max-width: 760px; }
.hero-badge {
  width: fit-content; display: inline-flex; align-items: center; gap: 8px; padding: 7px 11px;
  border: 1px solid #d7e5f1; border-radius: 999px; background: rgba(255,255,255,.78);
  color: #4f6780; font-size: 9px; font-weight: 800; letter-spacing: .075em; text-transform: uppercase;
  box-shadow: 0 5px 18px rgba(30, 72, 113, .04);
}
.hero-badge span { width: 7px; height: 7px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--blue)); box-shadow: 0 0 0 4px #e7f5fc; }
.hero h1 {
  margin: 21px 0 21px; color: var(--navy); font-family: "Manrope", sans-serif;
  font-size: clamp(46px, 5.2vw, 78px); line-height: .99; letter-spacing: -.058em;
}
.hero h1 em { font-style: normal; color: transparent; background: linear-gradient(90deg, #0875d1, #15a7cd 68%, #16a47f); -webkit-background-clip: text; background-clip: text; }
.hero-copy > p { max-width: 720px; margin: 0; color: #647a91; font-size: 16px; line-height: 1.78; }
.hero-actions-row { display: flex; align-items: center; gap: 21px; margin-top: 31px; }
.hero-proof { display: grid; gap: 3px; }
.hero-proof strong { color: #29445f; font-size: 10px; }
.hero-proof span { color: #8292a4; font-size: 9px; }
.btn {
  min-height: 44px; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 0 16px; border: 1px solid transparent; border-radius: 10px; cursor: pointer;
  font-size: 10px; font-weight: 800; line-height: 1; transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 17px; height: 17px; }
.btn-large { min-height: 50px; padding: 0 20px; border-radius: 12px; font-size: 11px; }
.btn-primary { color: #fff; background: linear-gradient(135deg, #0d73d9, #0d96d6); box-shadow: 0 12px 28px rgba(15, 119, 210, .18); }
.btn-primary:hover { box-shadow: 0 15px 35px rgba(15, 119, 210, .25); }
.btn-secondary { color: #26425e; border-color: #d7e1ea; background: #fff; }
.btn-secondary:hover { border-color: #bacbdd; background: #fafdff; }
.btn-text { color: #718397; background: transparent; }
.btn-text:hover { color: var(--navy); background: #f2f6f9; }
.hero-feature-row { display: flex; gap: 30px; margin-top: 40px; padding-top: 22px; border-top: 1px solid #e2eaf1; }
.hero-feature-row div { display: grid; gap: 2px; }
.hero-feature-row b { color: #1b3a57; font-family: "Manrope", sans-serif; font-size: 14px; }
.hero-feature-row span { color: #8a9aaa; font-size: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }

/* Hero visual */
.hero-visual {
  overflow: hidden; min-height: 520px; border: 1px solid #d4e0ea; border-radius: 24px;
  background: #fff; box-shadow: var(--shadow-lg);
}
.visual-toolbar { height: 45px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 15px; border-bottom: 1px solid #e2eaf1; background: #fbfdff; }
.toolbar-left { display: flex; gap: 5px; }
.window-dot { width: 7px; height: 7px; border-radius: 50%; background: #d7e0e8; }
.toolbar-title { color: #8c9aaa; font-size: 8px; font-weight: 700; }
.toolbar-live { justify-self: end; display: inline-flex; align-items: center; gap: 6px; color: #487069; font-size: 8px; font-weight: 800; }
.toolbar-live i { width: 6px; height: 6px; border-radius: 50%; background: #17a879; }
.visual-canvas { position: relative; min-height: 474px; overflow: hidden; background: linear-gradient(180deg, #f7fbff, #edf5fb); }
.map-stage { position: absolute; inset: 0; overflow: hidden; }
.map-grid-lines { position: absolute; inset: -10%; transform: rotate(-7deg); opacity: .48; background-image: linear-gradient(#d8e4ed 1px, transparent 1px), linear-gradient(90deg, #d8e4ed 1px, transparent 1px); background-size: 48px 48px; }
.geo-orbit { position: absolute; border: 1px solid rgba(24, 132, 209, .22); border-radius: 50%; left: 53%; top: 41%; transform: translate(-50%,-50%) rotate(-8deg); }
.orbit-1 { width: 315px; height: 165px; }
.orbit-2 { width: 405px; height: 225px; border-style: dashed; }
.orbit-3 { width: 485px; height: 285px; border-color: rgba(24,132,209,.11); }
.center-marker { position: absolute; left: 53%; top: 41%; width: 92px; height: 92px; transform: translate(-50%,-50%); display: grid; place-items: center; border-radius: 28px; border: 1px solid #cbdce9; background: rgba(255,255,255,.94); box-shadow: 0 18px 45px rgba(20, 76, 117, .16); }
.center-marker img { width: 77px; height: 77px; object-fit: contain; }
.pin-node, .custom-node { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: #1887df; border: 2px solid #fff; box-shadow: 0 0 0 4px rgba(24,135,223,.13), 0 6px 12px rgba(22,85,132,.15); }
.node-1 { left: 31%; top: 30%; }.node-2 { left: 69%; top: 24%; }.node-3 { left: 77%; top: 51%; }.node-4 { left: 35%; top: 59%; }.node-5 { left: 51%; top: 18%; }
.custom-node { width: 12px; height: 12px; background: #e89224; box-shadow: 0 0 0 4px rgba(232,146,36,.12), 0 6px 12px rgba(140,83,15,.12); }
.custom-1 { left: 18%; top: 57%; }.custom-2 { right: 9%; top: 37%; }
.radius-chip { position: absolute; left: 28px; top: 24px; display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; border: 1px solid #d2e0ea; border-radius: 10px; background: rgba(255,255,255,.9); color: #476078; font-size: 8px; font-weight: 800; box-shadow: 0 5px 18px rgba(34,75,113,.07); }
.radius-chip span { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 6px; background: #e9f3fd; color: #1775c9; }
.sheet-card { position: absolute; right: 23px; bottom: 22px; width: min(365px, calc(100% - 46px)); overflow: hidden; border: 1px solid #d6e1ea; border-radius: 15px; background: rgba(255,255,255,.96); box-shadow: 0 20px 48px rgba(20, 57, 89, .18); backdrop-filter: blur(8px); }
.sheet-card-head { display: flex; align-items: center; gap: 9px; padding: 11px 12px; border-bottom: 1px solid #e5ebf0; }
.excel-badge { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 7px; background: #148457; color: #fff; font-size: 10px; font-weight: 900; }
.sheet-card-head > div { display: grid; gap: 1px; flex: 1; }
.sheet-card-head strong { color: #314b64; font-size: 9px; }.sheet-card-head small { color: #94a2b1; font-size: 7px; }
.sheet-status { color: #24815f; font-size: 7px; font-weight: 800; padding: 4px 6px; border: 1px solid #cae7dc; border-radius: 999px; background: #eff9f5; }
.sheet-table { font-size: 7px; }.sheet-row { display: grid; grid-template-columns: 1fr .72fr .72fr; gap: 8px; padding: 8px 11px; border-bottom: 1px solid #edf1f4; color: #75879a; }.sheet-row:last-child { border-bottom: 0; }.sheet-header { color: #3d5369; background: #f8fafc; font-weight: 800; }

/* Generator */
.generator-section { padding: 82px 0 100px; background: #f4f7fa; }
.workspace-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 24px; }
.eyebrow { color: #3f789f; font-size: 8px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.workspace-heading h2 { margin: 8px 0 8px; color: var(--navy); font-family: "Manrope", sans-serif; font-size: clamp(30px, 3.2vw, 44px); letter-spacing: -.04em; }
.workspace-heading p { max-width: 680px; margin: 0; color: #73869a; font-size: 11px; line-height: 1.65; }
.workspace-meta { min-width: 220px; }
.completion-card { padding: 13px 14px; border: 1px solid #dce5ed; border-radius: 12px; background: #fff; box-shadow: var(--shadow-sm); }
.completion-card > span { color: #7d8ea0; font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: .055em; }.completion-card strong { float: right; color: #274963; font-size: 10px; }
.progress-track { height: 5px; margin-top: 10px; overflow: hidden; border-radius: 999px; background: #edf2f6; }.progress-track i { display: block; height: 100%; width: 0%; border-radius: inherit; background: linear-gradient(90deg, #0c75d8, #12b6c9); transition: width .2s ease; }
.workflow-strip { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; gap: 13px; margin-bottom: 18px; padding: 13px; border: 1px solid #dbe4ec; border-radius: 14px; background: #fff; box-shadow: 0 8px 28px rgba(18,52,83,.045); }
.workflow-strip > a { display: flex; align-items: center; gap: 9px; min-width: 0; padding: 7px 8px; border-radius: 9px; transition: background .15s ease; }.workflow-strip > a:hover { background: #f4f8fb; }
.workflow-strip > a > span { flex: 0 0 28px; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 9px; background: #edf5fc; color: #2275bb; font-size: 9px; font-weight: 900; }.workflow-strip a div { min-width: 0; display: grid; gap: 2px; }.workflow-strip strong { color: #365069; font-size: 9px; }.workflow-strip small { color: #8b9aaa; font-size: 7px; white-space: nowrap; }.workflow-strip > i { width: 18px; height: 1px; background: #dce5ec; }
.tool-layout { display: grid; grid-template-columns: minmax(0, 1.38fr) minmax(395px, .62fr); gap: 18px; align-items: start; }
.form-workspace { display: grid; gap: 16px; }
.form-section { position: relative; overflow: hidden; padding: 25px 26px 27px; border: 1px solid #dce5ed; border-radius: 17px; background: #fff; box-shadow: var(--shadow-sm); }
.form-section::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: #2d8fd5; }
.section-indigo::before { background: #5570d8; }.section-emerald::before { background: #13a17f; }.section-amber::before { background: #d88a28; }
.section-title { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 22px; }
.section-icon { flex: 0 0 41px; width: 41px; height: 41px; display: grid; place-items: center; border: 1px solid #d8e7f1; border-radius: 12px; background: #f1f8fd; color: #177bc2; }
.section-indigo .section-icon { border-color: #e0e3f5; background: #f4f5fc; color: #566fd0; }.section-emerald .section-icon { border-color: #d7ece6; background: #f1faf7; color: #16896e; }.section-amber .section-icon { border-color: #f0e2ca; background: #fff8ec; color: #b67420; }
.section-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.section-title > div:last-child { flex: 1; }
.title-line { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }.title-line span { color: #8292a2; font-size: 7px; font-weight: 900; letter-spacing: .10em; }.title-line b { padding: 3px 6px; border-radius: 999px; background: #f1f5f8; color: #708397; font-size: 7px; font-weight: 800; }
.section-title h3 { margin: 0 0 5px; color: #1b3852; font-family: "Manrope", sans-serif; font-size: 16px; letter-spacing: -.02em; }.section-title p { margin: 0; color: #7c8fa2; font-size: 9px; line-height: 1.55; }
.form-grid { display: grid; gap: 14px; }.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }.span-2 { grid-column: span 2; }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }.field > span { color: #40576e; font-size: 9px; font-weight: 750; }.field > span b { color: #ca5361; }.field small { color: #8c9aa9; font-size: 7.5px; line-height: 1.45; }
.input-shell { min-height: 43px; display: flex; align-items: center; overflow: hidden; border: 1px solid #d6e0e9; border-radius: 10px; background: #fff; transition: border-color .15s ease, box-shadow .15s ease; }.input-shell:focus-within { border-color: #83bce7; box-shadow: 0 0 0 3px rgba(24,129,205,.08); }.input-shell.has-prefix i { align-self: stretch; min-width: 43px; display: grid; place-items: center; border-right: 1px solid #e0e8ef; background: #f8fafc; color: #8b9aaa; font-size: 7px; font-style: normal; font-weight: 900; letter-spacing: .06em; }
input, textarea, select { width: 100%; outline: none; color: #1d3a55; background: #fff; }
.input-shell input { height: 41px; padding: 0 12px; border: 0; }.input-shell.has-prefix input { padding-left: 11px; }
textarea, select { border: 1px solid #d6e0e9; border-radius: 10px; transition: border-color .15s ease, box-shadow .15s ease; }textarea { min-height: 94px; padding: 11px 12px; resize: vertical; line-height: 1.55; }select { min-height: 43px; padding: 0 34px 0 12px; cursor: pointer; appearance: none; background-image: linear-gradient(45deg, transparent 50%, #708397 50%), linear-gradient(135deg, #708397 50%, transparent 50%); background-position: calc(100% - 15px) 18px, calc(100% - 11px) 18px; background-size: 4px 4px, 4px 4px; background-repeat: no-repeat; }textarea:focus, select:focus { border-color: #83bce7; box-shadow: 0 0 0 3px rgba(24,129,205,.08); }input::placeholder, textarea::placeholder { color: #a5b1bd; }
.compound-control { display: grid; grid-template-columns: minmax(0,1fr) 128px; gap: 8px; }.compound-control .grow { min-width: 0; }.compound-control select { height: 43px; }
.spacing-output { min-height: 43px; display: flex; align-items: center; gap: 8px; padding: 0 11px; border: 1px solid #cde2ea; border-radius: 10px; background: #f2fafc; }.spacing-output svg { flex: 0 0 19px; width: 19px; height: 19px; fill: none; stroke: #2b8ca8; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }.spacing-output input { min-width: 0; padding: 0; border: 0; background: transparent; color: #2d6271; font-size: 9px; font-weight: 750; }
.no-spinner::-webkit-inner-spin-button, .no-spinner::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }.no-spinner { -moz-appearance: textfield; }
.optional-block { margin-top: 17px; overflow: hidden; border: 1px solid #dfe7ee; border-radius: 11px; background: #fbfcfd; }.optional-block summary { list-style: none; display: flex; align-items: center; gap: 9px; padding: 11px 12px; cursor: pointer; }.optional-block summary::-webkit-details-marker { display: none; }.summary-icon { flex: 0 0 25px; width: 25px; height: 25px; display: grid; place-items: center; border: 1px solid #d7e1e9; border-radius: 7px; background: #fff; color: #6c8094; font-size: 14px; }.optional-block[open] .summary-icon { transform: rotate(45deg); }.optional-block summary div { display: grid; gap: 1px; flex: 1; }.optional-block summary strong { color: #4e6378; font-size: 9px; }.optional-block summary small { color: #91a0ae; font-size: 7px; }.optional-block summary em { color: #8b99a7; font-size: 7px; font-style: normal; font-weight: 700; }.optional-content { padding: 15px; border-top: 1px solid #e3eaf0; background: #fff; }
.paired-sections { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }.compact-section { min-height: 100%; }.compact-title { margin-bottom: 17px; }.compact-section textarea { min-height: 155px; }.field-foot { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }.field-foot strong { flex: 0 0 auto; color: #b16e1c; font-size: 7.5px; padding: 4px 6px; border-radius: 6px; background: #fff5e4; }
.validation-box { padding: 12px 14px; border-radius: 10px; font-size: 9px; line-height: 1.65; }.validation-box.error { display: block; border: 1px solid #f0c6cc; background: var(--danger-bg); color: var(--danger); }.hidden { display: none !important; }
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 15px 17px; border: 1px solid #d8e2eb; border-radius: 14px; background: #fff; box-shadow: var(--shadow-sm); }.action-copy { display: flex; align-items: center; gap: 9px; min-width: 0; }.action-icon { flex: 0 0 31px; width: 31px; height: 31px; display: grid; place-items: center; border-radius: 9px; background: #eaf8f3; color: #0f9569; font-size: 10px; font-weight: 900; }.action-copy div { display: grid; gap: 2px; }.action-copy strong { color: #3b536a; font-size: 9px; }.action-copy small { color: #8a99a8; font-size: 7px; }.action-buttons { display: flex; align-items: center; gap: 8px; }

/* Preview */
.preview-card { overflow: hidden; border: 1px solid #d8e2eb; border-radius: 17px; background: #fff; box-shadow: var(--shadow-md); }
.preview-sticky { position: sticky; top: 94px; padding: 19px; }
.preview-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding-bottom: 15px; border-bottom: 1px solid #e7edf2; }.preview-head h3 { margin: 5px 0 0; color: #183853; font-family: "Manrope", sans-serif; font-size: 16px; }.status-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 8px; border: 1px solid #cde6dc; border-radius: 999px; background: #f0faf6; color: #247a5c; font-size: 7px; font-weight: 900; }.status-badge i { width: 6px; height: 6px; border-radius: 50%; background: #18a879; }
.empty-state { min-height: 410px; display: grid; place-content: center; text-align: center; padding: 24px 16px; }.empty-visual { position: relative; width: 175px; height: 150px; display: grid; place-items: center; margin: 0 auto 12px; }.empty-visual img { width: 78px; position: relative; z-index: 3; opacity: .78; }.empty-ring { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); border: 1px solid #cfe0eb; border-radius: 50%; }.ring-one { width: 138px; height: 74px; }.ring-two { width: 172px; height: 100px; border-style: dashed; }.empty-pin { position: absolute; width: 7px; height: 7px; border: 2px solid #fff; border-radius: 50%; background: #2d91d4; box-shadow: 0 0 0 3px #dceefa; }.ep-1 { left: 22px; top: 70px; }.ep-2 { right: 16px; top: 53px; }.ep-3 { left: 91px; bottom: 16px; }.empty-state h4 { margin: 0 0 7px; color: #314d67; font-size: 12px; }.empty-state p { max-width: 315px; margin: 0 auto; color: #8494a4; font-size: 8.5px; line-height: 1.7; }.empty-columns { display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; margin-top: 17px; }.empty-columns span { padding: 6px 5px; border: 1px solid #e3eaf0; border-radius: 6px; background: #f8fafc; color: #8796a6; font-size: 6.5px; font-weight: 800; }
.result-summary { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 7px; margin: 16px 0 11px; }.result-summary > div { padding: 10px; border: 1px solid #e0e7ed; border-radius: 9px; background: #f9fbfc; }.result-summary .summary-primary { grid-column: span 2; display: flex; align-items: center; justify-content: space-between; background: linear-gradient(135deg, #f1f8fe, #f3fbfa); border-color: #d7e9ef; }.result-summary span { display: block; color: #8393a4; font-size: 7px; text-transform: uppercase; letter-spacing: .06em; }.result-summary strong { margin-top: 3px; display: block; color: #28465f; font-size: 13px; }.summary-primary strong { margin-top: 0; color: #126fac; font-size: 19px; }
.success-message { display: flex; gap: 9px; align-items: flex-start; margin: 10px 0 12px; padding: 10px; border: 1px solid #d0e9df; border-radius: 9px; background: #f2faf7; }.success-message > span { flex: 0 0 22px; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: #ddf4ea; color: #13815d; font-size: 8px; font-weight: 900; }.success-message div { display: grid; gap: 2px; }.success-message strong { color: #3a6b5a; font-size: 8px; }.success-message small { color: #7d958c; font-size: 7px; line-height: 1.4; }
.table-wrap { max-height: 395px; overflow: auto; border: 1px solid #dfe6ec; border-radius: 9px; }.table-wrap table { width: 100%; min-width: 700px; border-collapse: collapse; font-size: 8px; }.table-wrap th { position: sticky; top: 0; z-index: 1; text-align: left; padding: 9px; border-bottom: 1px solid #dfe6ec; background: #f4f7fa; color: #425d74; }.table-wrap td { padding: 9px; border-bottom: 1px solid #e8edf1; color: #6c7f91; vertical-align: top; }.table-wrap td:nth-child(2) { max-width: 280px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }.preview-note { margin: 7px 0 0; color: #94a0ac; font-size: 7px; line-height: 1.45; }.preview-downloads { display: grid; grid-template-columns: 1fr .72fr; gap: 7px; margin-top: 12px; }.full { width: 100%; }
.preview-footer-note { display: flex; align-items: center; gap: 7px; margin-top: 15px; padding-top: 13px; border-top: 1px solid #e8edf1; color: #8a99a7; font-size: 7px; }.preview-footer-note svg { flex: 0 0 15px; width: 15px; height: 15px; fill: none; stroke: #71889d; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* Footer */
.site-footer { border-top: 1px solid #dce4eb; background: #fff; }.footer-inner { min-height: 104px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }.footer-brand { display: flex; align-items: center; gap: 9px; }.footer-logo { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid #dbe4ec; border-radius: 10px; background: #f8fbfd; }.footer-logo img { width: 35px; height: 35px; object-fit: contain; }.footer-brand div { display: grid; gap: 2px; }.footer-brand strong { color: #1c3953; font-size: 11px; }.footer-brand span { color: #8394a4; font-size: 8px; }.site-footer p { max-width: 650px; margin: 0; text-align: right; color: #8291a0; font-size: 8px; line-height: 1.6; }.site-footer p strong { color: #51677c; }

::-webkit-scrollbar { width: 9px; height: 9px; }::-webkit-scrollbar-track { background: #f0f4f7; }::-webkit-scrollbar-thumb { background: #c4d0dc; border: 2px solid #f0f4f7; border-radius: 999px; }

@media (max-width: 1160px) {
  .hero-grid { grid-template-columns: 1fr; }.hero-copy { max-width: 850px; }.hero-visual { max-width: 760px; width: 100%; margin: 0 auto; }
  .tool-layout { grid-template-columns: 1fr; }.preview-sticky { position: static; }.preview-card { max-width: none; }.paired-sections { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .page-shell { width: min(100% - 26px, 1460px); }.header-inner { min-height: 68px; }.header-trust { display: none; }.brand-copy small { display: none; }
  .hero { padding: 62px 0 68px; }.hero h1 { font-size: clamp(42px, 11vw, 60px); }.hero-copy > p { font-size: 14px; }.hero-actions-row { align-items: flex-start; flex-direction: column; }.hero-feature-row { gap: 18px; }
  .hero-visual { min-height: 470px; }.visual-canvas { min-height: 424px; }.sheet-card { left: 18px; right: 18px; width: auto; }.map-stage { transform: scale(.9); transform-origin: center top; }
  .generator-section { padding: 64px 0 76px; }.workspace-heading { display: block; }.workspace-meta { margin-top: 15px; }.completion-card { max-width: 280px; }
  .workflow-strip { overflow-x: auto; grid-template-columns: repeat(7, max-content); }.workflow-strip > a { min-width: 150px; }
  .two-col { grid-template-columns: 1fr; }.span-2 { grid-column: span 1; }.form-section { padding: 21px 18px 23px; }.section-title { gap: 10px; }.section-icon { width: 37px; height: 37px; flex-basis: 37px; }
  .form-actions { align-items: flex-start; flex-direction: column; }.action-buttons { width: 100%; flex-wrap: wrap; }.action-buttons .btn-primary { flex: 1 1 220px; }.action-buttons .btn-secondary { flex: 1 1 120px; }
  .footer-inner { padding: 23px 0; align-items: flex-start; flex-direction: column; }.site-footer p { text-align: left; }
}
@media (max-width: 520px) {
  .header-cta { font-size: 9px; }.hero-feature-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }.hero-feature-row b { font-size: 12px; }.hero-feature-row span { font-size: 6.5px; }
  .hero-visual { min-height: 430px; }.visual-canvas { min-height: 384px; }.center-marker { width: 78px; height: 78px; }.center-marker img { width: 65px; height: 65px; }.sheet-card { bottom: 14px; }
  .compound-control { grid-template-columns: 1fr 105px; }.form-actions { padding: 14px; }.action-copy { display: none; }.action-buttons { display: grid; grid-template-columns: 1fr 1fr; }.action-buttons .btn-primary { grid-column: span 2; }
  .result-summary { grid-template-columns: 1fr 1fr; }.preview-downloads { grid-template-columns: 1fr; }
}
.field-foot strong.has-error { color: #b23f50; background: #fff0f2; }
