:root {
  --bg: #f5f8fa;
  --surface: #ffffff;
  --surface-strong: #eef5ff;
  --navy: #102a43;
  --navy-2: #17324d;
  --text: #162033;
  --muted: #667085;
  --text-soft: #475467;
  --line: #d7e2e0;
  --accent: #1d4ed8;
  --accent-dark: #1e40af;
  --accent-rgb: 29, 78, 216;
  --safe: #38bdf8;
  --safe-rgb: 56, 189, 248;
  --warn: #b7791f;
  --danger: #d14343;
  --shadow: 0 20px 50px rgba(16, 42, 67, .11);
}

:root[data-theme="dark"] {
  --bg: #09111d;
  --surface: #101b2a;
  --surface-strong: #172637;
  --navy: #e8f1f5;
  --navy-2: #d5e5e8;
  --text: #dce8ec;
  --muted: #94a3b8;
  --text-soft: #b8c5d8;
  --line: #263846;
  --accent: #60a5fa;
  --accent-dark: #3b82f6;
  --accent-rgb: 96, 165, 250;
  --safe: #34d399;
  --safe-rgb: 52, 211, 153;
  --warn: #fbbf24;
  --danger: #f87171;
  --shadow: 0 24px 58px rgba(0, 0, 0, .34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.landing-page {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
  color: var(--navy);
}

.brand img {
  width: 34px;
  height: 34px;
}

.site-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.site-nav a {
  transition: color .18s ease, transform .18s ease, background-color .18s ease;
}

.site-nav a:hover {
  color: var(--navy);
  transform: translateY(-1px);
}

.nav-signup,
.nav-login,
.button {
  border-radius: 8px;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.nav-signup {
  padding: 9px 14px;
  color: #fff;
  background: var(--accent);
  box-shadow: 0 10px 22px rgba(var(--accent-rgb), .18);
}

.nav-login {
  padding: 9px 14px;
  color: var(--navy);
  border: 1px solid var(--line);
  background: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 6vw, 92px) clamp(34px, 5vw, 64px);
  background:
    radial-gradient(800px 360px at 8% 12%, rgba(var(--accent-rgb), .12), transparent 62%),
    linear-gradient(135deg, #ffffff 0%, #f1f7f5 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.verification-card h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.06;
}

.description,
.verification-lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: 19px;
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  font-weight: 900;
  border: 1px solid transparent;
}

.button.primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 14px 28px rgba(var(--accent-rgb), .22);
}

.button.primary:hover,
.nav-signup:hover {
  color: #fff;
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.button.secondary {
  color: var(--navy);
  background: #fff;
  border-color: var(--line);
}

.button.secondary:hover,
.nav-login:hover {
  border-color: rgba(var(--accent-rgb), .35);
  transform: translateY(-2px);
}

.hero-note {
  display: grid;
  gap: 6px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.quote-preview,
.card,
.feature-card,
.price-card,
.trust-box,
.verification-card,
.notice {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.quote-preview {
  padding: 22px;
  animation: float-panel 7s ease-in-out infinite;
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.preview-header strong {
  display: block;
  color: var(--navy);
  font-size: 23px;
  font-weight: 900;
}

.preview-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 8px 10px;
  color: var(--safe);
  font-size: 12px;
  font-weight: 900;
  border: 1px solid rgba(var(--safe-rgb), .24);
  border-radius: 999px;
  background: rgba(var(--safe-rgb), .08);
  animation: pulse-badge 2.8s ease-in-out infinite;
}

.quote-time-pill {
  color: var(--navy);
  border-color: rgba(var(--accent-rgb), .22);
  background: #f1faf7;
  animation: none;
}

.quote-time-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.quote-time-icon::before,
.quote-time-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 50%;
  width: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: bottom center;
}

.quote-time-icon::before {
  height: 4px;
  transform: translateX(-50%) rotate(0deg);
}

.quote-time-icon::after {
  height: 5px;
  transform: translateX(-50%) rotate(90deg);
}

.status-pill.waiting {
  color: var(--warn);
  border-color: rgba(183, 121, 31, .28);
  background: rgba(183, 121, 31, .09);
}

.status-pill.error {
  color: var(--danger);
  border-color: rgba(209, 67, 67, .26);
  background: rgba(209, 67, 67, .08);
}

.quote-message {
  margin: 16px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.quote-list {
  display: grid;
  gap: 12px;
}

.quote-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 96px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.quote-card:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--accent-rgb), .26);
  box-shadow: 0 18px 36px rgba(16, 42, 67, .10);
}

.quote-card.empty {
  grid-template-columns: 1fr;
  background: #f7fbfa;
}

.quote-name,
.quote-code,
.quote-meta {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.quote-title {
  display: block;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.3;
}

.quote-name + .quote-title {
  margin-top: 6px;
}

.quote-code {
  display: inline-flex;
  margin-top: 6px;
}

.quote-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.quote-price {
  text-align: right;
}

.quote-price strong {
  display: block;
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
}

.quote-price.missing strong {
  color: var(--muted);
  font-size: 16px;
}

.quote-change {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.quote-change.up {
  color: #d14343;
}

.quote-change.down {
  color: #1f62c8;
}

.quote-footnote {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.market-preview {
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: transparent;
  box-shadow: none;
  animation: float-panel 7s ease-in-out infinite;
  pointer-events: auto;
}

.market-preview .dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(170px, .8fr);
  grid-template-rows: auto 170px 145px;
  gap: 10px;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(9, 17, 29, .98), rgba(16, 42, 67, .95));
  box-shadow: 0 24px 46px rgba(16, 42, 67, .24);
}

.market-preview .ticker-row,
.market-preview .chart-panel {
  border: 1px solid rgba(215, 226, 224, .16);
  border-radius: 12px;
  background: rgba(255, 255, 255, .07);
}

.market-preview .ticker-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: max-content max-content minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  overflow: hidden;
  color: rgba(255, 255, 255, .74);
  font-size: 12px;
}

.market-preview .ticker-row > span:first-child {
  color: rgba(255, 255, 255, .9);
  font-weight: 900;
}

.market-preview .ticker-row #landingQuoteMessage {
  min-width: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, .66);
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.market-preview .status-pill {
  padding: 6px 9px;
  color: #38bdf8;
  border-color: rgba(56, 189, 248, .26);
  background: rgba(56, 189, 248, .10);
  animation: none;
}

.market-preview .status-pill.waiting {
  color: #ffd36a;
  border-color: rgba(255, 211, 106, .28);
  background: rgba(255, 211, 106, .10);
}

.market-preview .status-pill.error {
  color: #ff8c7a;
  border-color: rgba(255, 140, 122, .28);
  background: rgba(255, 140, 122, .10);
}

.market-preview .chart-panel {
  position: relative;
  overflow: hidden;
  padding: 14px;
}

.market-preview .main-chart {
  grid-row: span 2;
  background:
    linear-gradient(rgba(215, 226, 224, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 226, 224, .075) 1px, transparent 1px),
    rgba(255, 255, 255, .07);
  background-size: 100% 38px, 48px 100%, auto;
}

.market-preview .panel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 800;
}

.market-preview .panel-head strong {
  color: #fff;
}

.market-preview .bars {
  position: absolute;
  inset: 66px 18px 24px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: end;
  gap: 7px;
}

.market-preview .bars i {
  height: var(--h);
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, #38bdf8 0%, #2563eb 52%, rgba(29, 78, 216, .58) 100%);
  animation: barPulse 3.8s ease-in-out infinite alternate;
}

.market-preview .trend-line {
  position: absolute;
  inset: 84px 16px 22px;
  width: calc(100% - 32px);
  height: calc(100% - 106px);
  overflow: visible;
}

.market-preview .trend-line path {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-width: 4;
  filter: drop-shadow(0 0 12px rgba(56, 189, 248, .64));
}

.market-preview .watchlist .quote-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.market-preview .quote-card {
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 0;
  padding: 0 0 9px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.market-preview .quote-card:hover {
  transform: none;
  border-color: rgba(255, 255, 255, .16);
  box-shadow: none;
}

.market-preview .quote-card.empty {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
}

.market-preview .quote-title {
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
}

.market-preview .quote-name,
.market-preview .quote-code,
.market-preview .quote-card p {
  color: rgba(255, 255, 255, .62);
}

.market-preview .quote-code {
  margin-top: 4px;
  font-size: 11px;
}

.market-preview .quote-price strong {
  color: #fff;
  font-size: 13px;
}

.market-preview .quote-price.missing strong {
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
}

.market-preview .quote-change {
  margin-top: 4px;
  color: #ffd36a;
  font-size: 12px;
}

.market-preview .quote-change.up {
  color: #ff8c7a;
}

.market-preview .quote-change.down {
  color: #38bdf8;
}

.market-preview .quote-change.flat {
  color: #ffd36a;
}

.market-preview .market-meter {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding-top: 14px;
}

.market-preview .meter-ring {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(18, 38, 48, .96) 0 52%, transparent 53%), conic-gradient(from -150deg, #38bdf8 0 72%, rgba(255,255,255,.14) 72% 100%);
}

.market-preview .meter-ring span {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.market-preview .meter-ring small {
  margin-top: -14px;
  color: #ffd36a;
  font-size: 9px;
  font-weight: 900;
}

.market-preview .meter-copy b,
.market-preview .meter-copy em {
  display: block;
}

.market-preview .meter-copy b {
  margin-bottom: 5px;
  color: #fff;
  font-size: 14px;
}

.market-preview .meter-copy em {
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
  font-style: normal;
  line-height: 1.45;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 22px clamp(20px, 6vw, 92px);
  background: var(--navy);
}

.trust-strip div {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: #fff;
  font-size: 17px;
}

.trust-strip span {
  margin-top: 6px;
  color: rgba(226, 238, 252, .76);
  font-size: 13px;
  line-height: 1.5;
}

.section {
  padding: clamp(48px, 7vw, 88px) clamp(20px, 6vw, 92px);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 26px;
}

.section-heading h2,
.notice h2,
.trust-box h3,
.trust-box h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.18;
}

.section-heading p:not(.eyebrow),
.card p,
.feature-card p,
.price-card p,
.trust-box p,
.notice p {
  color: var(--text-soft);
  line-height: 1.65;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.why-grid,
.pricing-grid {
  display: grid;
  gap: 16px;
}

.why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1040px;
}

.pricing-grid--multi {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: none;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card,
.feature-card,
.price-card {
  min-height: 210px;
  padding: 24px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.price-card {
  display: flex;
  flex-direction: column;
}

.card:hover,
.feature-card:hover,
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--accent-rgb), .28);
  box-shadow: 0 24px 56px rgba(16, 42, 67, .13);
}

.number {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--accent);
  font-weight: 900;
}

.card h3,
.feature-card h3,
.price-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.35;
}

.feature-card span,
.plan-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 9px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  border-radius: 999px;
  background: rgba(var(--accent-rgb), .08);
}

.plan-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.plan-badge-row .plan-badge {
  margin-bottom: 0;
}

.plan-savings-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 9px;
  color: #b45309;
  font-size: 12px;
  font-weight: 900;
  border-radius: 999px;
  background: rgba(245, 158, 11, .14);
}

.flow-section {
  background: #eef6f3;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.flow-grid div {
  min-height: 130px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.flow-grid strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #fff;
  border-radius: 999px;
  background: var(--navy);
}

.flow-grid span {
  display: block;
  margin-top: 18px;
  color: var(--navy);
  font-weight: 900;
  line-height: 1.45;
}

.pricing-section {
  background: #fbfdfc;
}

.pricing-section .section-heading {
  max-width: 900px;
}

.price-card strong {
  display: block;
  margin: 14px 0 10px;
  color: var(--navy);
  font-size: 26px;
  line-height: 1.25;
}

.price-card.featured {
  border-color: rgba(var(--accent-rgb), .35);
  box-shadow: 0 26px 62px rgba(var(--accent-rgb), .16);
}

.price-card .button {
  margin-top: auto;
}

.price-note {
  margin-top: 0;
  font-size: 14px;
  font-weight: 700;
}

.plan-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.plan-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  border: 1px solid rgba(var(--accent-rgb), .16);
  border-radius: 999px;
  background: rgba(var(--accent-rgb), .07);
}

.plan-service-heading {
  margin: 18px 0 10px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.plan-feature-list {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.plan-feature-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.45;
}

.plan-feature-list li::before {
  content: "";
  position: absolute;
  top: .42em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), .10);
}

.pricing-empty {
  max-width: 720px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.pricing-empty strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
}

.pricing-empty p {
  color: var(--text-soft);
  line-height: 1.65;
}

.pricing-risk-note {
  max-width: 900px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.company-section {
  background: #eef6f3;
}

.company-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
}

.info-table {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.info-table div {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
}

.info-table div:last-child {
  border-bottom: 0;
}

.info-table dt,
.info-table dd {
  margin: 0;
  padding: 15px 18px;
}

.info-table dt {
  color: var(--navy);
  font-weight: 800;
  background: #f3faf7;
}

.info-table dd {
  color: var(--text-soft);
}

.trust-box {
  padding: 22px;
}

.escrow-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  margin-top: 18px;
  padding: 24px 18px;
  text-align: center;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbfa;
}

.escrow-placeholder form {
  display: none;
}

.escrow-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 4px 0 10px;
}

.escrow-mark img {
  display: block;
  width: 92px;
  max-width: 100%;
  height: auto;
  border: 0;
}

.escrow-caption {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.notice {
  margin: clamp(32px, 5vw, 64px) clamp(20px, 6vw, 92px) clamp(54px, 8vw, 96px);
  padding: 24px;
}

.notice.compact {
  margin-top: 24px;
  box-shadow: none;
}

.verification-main {
  padding: clamp(34px, 6vw, 76px) clamp(20px, 6vw, 92px);
}

.verification-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 54px);
}

.verification-table,
.verification-trust {
  margin-top: 28px;
}

:root[data-theme="dark"] .site-header {
  background: rgba(11, 18, 32, .92);
}

:root[data-theme="dark"] .hero {
  background:
    radial-gradient(800px 360px at 8% 12%, rgba(var(--accent-rgb), .18), transparent 62%),
    linear-gradient(135deg, #09111d 0%, #101b2a 100%);
}

:root[data-theme="dark"] .description,
:root[data-theme="dark"] .verification-lead,
:root[data-theme="dark"] .section-heading p:not(.eyebrow),
:root[data-theme="dark"] .card p,
:root[data-theme="dark"] .feature-card p,
:root[data-theme="dark"] .price-card p,
:root[data-theme="dark"] .plan-feature-list li,
:root[data-theme="dark"] .pricing-empty p,
:root[data-theme="dark"] .pricing-risk-note,
:root[data-theme="dark"] .trust-box p,
:root[data-theme="dark"] .notice p {
  color: var(--text-soft);
}

:root[data-theme="dark"] .plan-meta span {
  background: rgba(var(--accent-rgb), .10);
  border-color: rgba(var(--accent-rgb), .22);
}

:root[data-theme="dark"] .plan-savings-badge {
  color: #fbbf24;
  background: rgba(251, 191, 36, .14);
}

:root[data-theme="dark"] .nav-login,
:root[data-theme="dark"] .button.secondary {
  color: var(--navy);
  background: #111c2a;
  border-color: var(--line);
}

:root[data-theme="dark"] .quote-card.empty,
:root[data-theme="dark"] .quote-time-pill,
:root[data-theme="dark"] .flow-grid div,
:root[data-theme="dark"] .info-table,
:root[data-theme="dark"] .escrow-placeholder {
  background: var(--surface-strong);
}

:root[data-theme="dark"] .flow-section,
:root[data-theme="dark"] .company-section,
:root[data-theme="dark"] .pricing-section {
  background: #0d1826;
}

:root[data-theme="dark"] .info-table dt {
  color: var(--navy);
  background: #142434;
}

:root[data-theme="dark"] .info-table dd {
  color: #d0d9e8;
}

@keyframes barPulse { from { transform: scaleY(.96); transform-origin: bottom; } to { transform: scaleY(1.04); transform-origin: bottom; } }

@keyframes pulse-badge {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(var(--safe-rgb), .22);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(var(--safe-rgb), 0);
  }
}

@keyframes float-panel {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1180px) {
  .hero,
  .company-layout {
    grid-template-columns: 1fr;
  }

  .quote-preview {
    max-width: 760px;
  }

  .market-preview .dashboard {
    margin-left: 0;
  }

  .trust-strip,
  .flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .why-grid,
  .feature-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .quote-card {
    grid-template-columns: 1fr;
  }

  .quote-price {
    text-align: left;
  }

  .market-preview .dashboard {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    max-width: none;
    padding: 12px;
  }

  .market-preview .ticker-row {
    grid-template-columns: 1fr;
  }

  .market-preview .ticker-row #landingQuoteMessage {
    white-space: normal;
  }

  .market-preview .main-chart,
  .market-preview .heatmap {
    display: none;
  }

  .market-preview .watchlist .quote-list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
    scroll-snap-type: x mandatory;
  }

  .market-preview .quote-card {
    min-width: 220px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
    scroll-snap-align: start;
  }

  .market-preview .quote-price {
    text-align: left;
  }

  .trust-strip,
  .why-grid,
  .feature-grid,
  .flow-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .info-table div {
    grid-template-columns: 1fr;
  }

  .info-table dt,
  .info-table dd {
    padding: 12px 14px;
  }

  .actions .button {
    width: 100%;
  }
}

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

/* 8092 static landing preview alignment overrides */
.top-notice {
  background: #eef5ff;
  border-bottom: 1px solid rgba(29, 78, 216, .14);
}

.notice-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  width: min(1080px, calc(100% - 48px));
  min-height: 76px;
  margin: 0 auto;
}

.notice-inner strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-dark);
  font-size: 22px;
  font-weight: 900;
}

.notice-inner span {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 700;
}

.notice-inner a {
  flex: 0 0 auto;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 12px 22px rgba(29, 78, 216, .22);
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr;
  min-height: 74px;
  padding: 0 max(24px, calc((100vw - 1080px) / 2));
  background: linear-gradient(90deg, #102a43 0%, #1e3a8a 56%, #1d4ed8 100%);
  color: #fff;
  border-bottom: 0;
  box-shadow: 0 12px 28px rgba(16, 42, 67, .14);
  backdrop-filter: none;
}

.brand {
  color: #fff;
  gap: 10px;
  font-size: 20px;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, .18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .32);
  font-size: 13px;
  font-weight: 900;
}

.site-nav {
  gap: 28px;
  color: rgba(255, 255, 255, .88);
  font-size: 16px;
  font-weight: 850;
}

.site-nav a:hover {
  color: #fff;
}

.nav-signup,
.nav-login {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 8px;
}

.nav-signup {
  display: inline-flex;
  align-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .12);
  box-shadow: none;
}

.nav-login {
  display: inline-flex;
  align-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .08);
}

.hero {
  width: min(1080px, calc(100% - 48px));
  min-height: 430px;
  margin: 32px auto 0;
  padding: 54px 56px;
  grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr);
  gap: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 78% 22%, rgba(56, 189, 248, .22), transparent 28%),
    linear-gradient(90deg, #ffffff 0 52%, #eff6ff 52% 100%);
  box-shadow: 0 18px 36px rgba(17, 24, 32, .08);
}

.hero-copy {
  max-width: 440px;
}

.hero h1 {
  margin-bottom: 18px;
  font-size: 64px;
  line-height: 1;
  font-weight: 950;
}

.description {
  max-width: 440px;
  margin-top: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.72;
}

.actions {
  margin-top: 28px;
}

.button {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
}

.market-preview .dashboard {
  grid-template-columns: minmax(0, 1.38fr) minmax(190px, .82fr);
  grid-template-rows: auto 190px 155px;
  max-width: 560px;
}

.market-preview .watchlist .quote-list {
  gap: 6px;
  margin-top: 9px;
}

.market-preview .quote-card {
  min-height: 26px;
  padding: 0 0 6px;
  gap: 8px;
}

.market-preview .quote-card > div {
  min-width: 0;
}

.market-preview .quote-title {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.market-preview .quote-code {
  margin-top: 2px;
  font-size: 10px;
}

.market-preview .quote-price {
  min-width: 82px;
  white-space: nowrap;
}

.market-preview .quote-price strong {
  font-size: 12px;
}

.market-preview .quote-change {
  margin-top: 2px;
  font-size: 11px;
}

.market-preview .quote-card.empty {
  min-height: 88px;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .market-preview .dashboard {
    margin-left: 0;
  }
}

@media (max-width: 680px) {
  .notice-inner {
    display: grid;
    width: calc(100% - 32px);
    min-height: auto;
    padding: 22px 0;
  }

  .notice-inner strong {
    font-size: 19px;
  }

  .site-header {
    grid-template-columns: 1fr;
    padding: 14px 20px;
  }

  .site-nav {
    gap: 10px;
    font-size: 13px;
  }

  .hero {
    width: calc(100% - 32px);
    margin-top: 18px;
    padding: 34px 22px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .description {
    font-size: 17px;
  }

  .market-preview .dashboard {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    max-width: none;
    padding: 12px;
  }

  .market-preview .main-chart,
  .market-preview .heatmap {
    display: none;
  }

  .market-preview .watchlist .quote-list {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 2px;
    scroll-snap-type: x mandatory;
  }

  .market-preview .quote-card {
    min-width: 220px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
    scroll-snap-align: start;
  }
}

/* Lower landing preview alignment */
:root {
  --ink: var(--navy);
  --soft-ink: var(--navy-2);
  --paper: var(--bg);
  --panel: var(--surface);
  --brand: var(--accent);
  --brand-2: #38bdf8;
  --brand-dark: var(--accent-dark);
  --blue: #2563eb;
  --mint: #38bdf8;
  --amber: #f6bd4a;
  --violet: #60758a;
  --deep: #0b1f2f;
  --deep-2: #102a43;
  --white: #ffffff;
}

.quick-menu {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  width: min(1080px, calc(100% - 48px));
  margin: 24px auto 0;
}

.quick-menu a {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 104px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 14px 26px rgba(17, 24, 32, .06);
}

.quick-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 4px 7px rgba(16, 42, 67, .20), inset 0 1px 0 rgba(255, 255, 255, .42);
}

.quick-blue { background: linear-gradient(145deg, #4bb3ff, #102a43); }
.quick-mint { background: linear-gradient(145deg, #60a5fa, #1d4ed8); }
.quick-amber { background: linear-gradient(145deg, #ffd96a, #ff9d2e); }
.quick-violet { background: linear-gradient(145deg, #9bb3c7, #263746); }
.quick-cyan { background: linear-gradient(145deg, #7dd3fc, #2563eb); }
.quick-menu strong,
.quick-menu em { display: block; }
.quick-menu strong { margin-bottom: 5px; color: var(--navy); font-size: 17px; font-weight: 900; }
.quick-menu em { color: var(--muted); font-size: 13px; font-style: normal; }

.section {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-heading {
  display: block;
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading.compact { max-width: 720px; }
.section-heading h2,
.workflow-copy h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 42px;
  line-height: 1.15;
  font-weight: 950;
  word-break: keep-all;
}

.section-heading p:not(.eyebrow),
.workflow-copy p,
.feature-card p,
.timeline p,
.service-points p {
  color: var(--muted);
  line-height: 1.72;
  word-break: keep-all;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.feature-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 20px;
  align-content: start;
  min-height: 246px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 14px 26px rgba(17, 24, 32, .055);
}

.feature-icon {
  display: inline-grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff, #eef5ff);
  box-shadow: 0 4px 7px rgba(16, 42, 67, .20), inset 0 1px 0 rgba(255, 255, 255, .94);
}

.feature-icon svg {
  width: 46px;
  height: 46px;
  overflow: visible;
  filter: drop-shadow(0 2px 1.5px rgba(16, 42, 67, .22));
}

.feature-icon rect,
.feature-icon svg > path:not([class]),
.feature-icon circle {
  fill: url("#featureBlue");
  stroke: rgba(255, 255, 255, .72);
  stroke-width: 1.4;
}
.market-icon rect, .market-icon circle { fill: url("#marketGrad"); }
.watch-icon svg > path:not([class]), .watch-icon circle { fill: url("#watchGrad"); }
.alert-icon svg > path:not([class]), .alert-icon circle { fill: url("#alertGrad"); }
.curation-icon svg > path:not([class]), .curation-icon circle { fill: url("#curationGrad"); }
.feature-icon .icon-line,
.feature-icon .icon-base,
.feature-icon .icon-roof,
.feature-icon .icon-fold,
.feature-icon .icon-handle {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}
.feature-icon .icon-base { stroke: rgba(20, 45, 62, .24); }
.feature-icon .icon-fold { fill: rgba(255, 255, 255, .4); }
.market-icon { background: linear-gradient(145deg, #eef7f8, #fff); }
.watch-icon { background: linear-gradient(145deg, #eef9f5, #fff); }
.alert-icon { background: linear-gradient(145deg, #fff4d8, #fff); }
.curation-icon { background: linear-gradient(145deg, #eef3f6, #fff); }
.feature-card h3,
.timeline h3,
.service-points h3 {
  margin-bottom: 8px;
  color: var(--navy-2);
  font-size: 20px;
  font-weight: 900;
}
.feature-card h3 {
  align-self: center;
  min-width: 0;
  margin-bottom: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 18px;
  line-height: 1.3;
  word-break: keep-all;
}
.feature-card p {
  grid-column: 1 / -1;
  width: 100%;
  min-height: calc(1.58em * 3);
  margin-top: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 1.58;
}

.workflow-section {
  display: grid;
  grid-template-columns: .86fr 1fr;
  gap: 64px;
  align-items: start;
}
.workflow-copy { position: sticky; top: 100px; }
.timeline {
  display: grid;
  gap: 12px;
  counter-reset: workflow-step;
}
.timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 6px 18px;
  align-items: center;
  min-height: 118px;
  padding: 22px 24px;
  overflow: hidden;
  border: 1px solid rgba(29, 78, 216, .12);
  border-radius: 18px;
  background: linear-gradient(135deg, #fff 0%, #f8fbff 100%);
  box-shadow: 0 14px 30px rgba(16, 42, 67, .06);
  counter-increment: workflow-step;
}
.timeline article::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, var(--accent), #38bdf8);
}
.timeline-icon {
  grid-row: 1 / 3;
  position: relative;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(29, 78, 216, .12);
  border-radius: 16px;
  background: linear-gradient(145deg, #f8fbff, #eef5ff);
  color: var(--accent);
  box-shadow: 0 3px 6px rgba(16, 42, 67, .16), inset 0 1px 0 rgba(255, 255, 255, .95);
}
.timeline-icon svg { display: none; }
.timeline-icon::before { content: "0" counter(workflow-step); color: currentColor; font-size: 15px; font-weight: 950; line-height: 1; }
.timeline-icon::after { position: absolute; left: 50%; bottom: 13px; width: 18px; height: 3px; content: ""; border-radius: 999px; background: currentColor; transform: translateX(-50%); opacity: .34; }
.timeline article:nth-child(2) .timeline-icon { color: #0f766e; background: linear-gradient(145deg, #fff, #ecfdf5); }
.timeline article:nth-child(3) .timeline-icon { color: #b45309; background: linear-gradient(145deg, #fff, #fff7ed); }
.timeline article:nth-child(4) .timeline-icon { color: #6d28d9; background: linear-gradient(145deg, #fff, #f5f3ff); }
.timeline-label { grid-column: 2; color: var(--accent-dark); font-size: 12px; font-weight: 900; white-space: nowrap; }
.timeline-body { grid-column: 2; min-width: 0; }
.timeline-body h3 { margin: 0 0 6px; }
.timeline-body p { max-width: 340px; margin: 0; }

.service-section {
  width: 100%;
  padding: 86px max(24px, calc((100vw - 1080px) / 2));
  background: #eef5ff;
}
.service-layout {
  display: grid;
  grid-template-columns: minmax(280px, .98fr) minmax(360px, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 34px;
}
.terminal-visual {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px), #102a43;
  background-size: 48px 48px, 48px 48px, auto;
  color: #fff;
  box-shadow: 0 18px 34px rgba(17, 24, 32, .12);
}
.terminal-bar { display: flex; gap: 8px; margin-bottom: 26px; }
.terminal-bar span { width: 11px; height: 11px; border-radius: 50%; background: #38bdf8; }
.terminal-bar span:nth-child(2) { background: #f6bd4a; }
.terminal-bar span:nth-child(3) { background: var(--accent); }
.terminal-lines { display: grid; flex: 1; align-content: space-between; gap: 14px; }
.terminal-lines p { display: flex; align-items: center; min-height: 64px; margin: 0; padding: 14px 18px; border: 1px solid rgba(255,255,255,.11); border-radius: 12px; background: rgba(255,255,255,.055); color: rgba(255,255,255,.78); font-size: 14px; }
.terminal-lines b { display: inline-block; min-width: 48px; color: #38bdf8; }
.service-points { display: grid; gap: 12px; }
.service-points article { display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: center; min-height: 122px; padding: 22px 24px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); box-shadow: 0 14px 26px rgba(17,24,32,.05); }
.service-icon { display: grid; width: 56px; height: 56px; place-items: center; border-radius: 18px; background: linear-gradient(145deg, #fff, #eef5ff); color: #f7fbff; box-shadow: 0 4px 7px rgba(16,42,67,.20), inset 0 1px 0 rgba(255,255,255,.94); }
.service-icon svg { width: 46px; height: 46px; overflow: visible; filter: drop-shadow(0 2px 1.5px rgba(16,42,67,.22)); }
.service-icon path, .service-icon rect, .service-icon circle { stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.15; }
.service-icon circle { fill: #eff6ff; stroke: #1d4ed8; }
.service-icon .icon-shadow { fill: rgba(19,40,56,.18); stroke: none; }
.service-points article:nth-child(1) .service-icon { background: linear-gradient(145deg, #eef7f8, #fff); }
.service-points article:nth-child(2) .service-icon { background: linear-gradient(145deg, #eef9f5, #fff); }
.service-points article:nth-child(3) .service-icon { background: linear-gradient(145deg, #fff4d8, #fff); }
.service-points p { margin-bottom: 0; max-width: 420px; }

@media (max-width: 980px) {
  .quick-menu, .section { width: calc(100% - 32px); }
  .quick-menu { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow-section, .service-layout { grid-template-columns: 1fr; }
  .workflow-copy { position: static; }
}

@media (max-width: 680px) {
  .quick-menu { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .section-heading h2, .workflow-copy h2 { font-size: 32px; }
  .feature-grid, .service-points article { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .timeline article { grid-template-columns: 56px minmax(0, 1fr); min-height: auto; padding: 18px 18px 18px 20px; }
  .timeline-icon { width: 56px; height: 56px; border-radius: 16px; }
  .service-section { padding: 72px 20px; }
}

/* Quick summary dark strip redesign */
.quick-menu.quick-summary {
  width: 100%;
  margin: 0;
  padding: 24px max(24px, calc((100vw - 1080px) / 2));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  background: #14243f;
}

.quick-menu.quick-summary a {
  display: block;
  min-height: 82px;
  padding: 18px 20px;
  border: 1px solid rgba(210, 226, 246, .18);
  border-radius: 6px;
  background: rgba(255, 255, 255, .045);
  box-shadow: none;
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}

.quick-menu.quick-summary a:hover {
  border-color: rgba(125, 211, 252, .34);
  background: rgba(255, 255, 255, .075);
  transform: translateY(-1px);
}

.quick-menu.quick-summary strong {
  display: block;
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
}

.quick-menu.quick-summary em {
  display: block;
  color: rgba(226, 238, 252, .78);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  word-break: keep-all;
}

@media (max-width: 980px) {
  .quick-menu.quick-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 680px) {
  .quick-menu.quick-summary {
    grid-template-columns: 1fr;
  }
}

/* 2026 landing redesign based on service overview mockup */
body.landing-page {
  background: #f4f8fd;
  color: #071b4a;
}

.top-notice {
  background: #f7fbff;
  border-bottom: 1px solid #dbe7f7;
}

.notice-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #273a66;
  font-size: 13px;
  font-weight: 700;
}

.notice-inner strong {
  margin-right: 8px;
  color: #0f4bd8;
}

.notice-inner a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 14px;
  border-radius: 999px;
  color: #ffffff;
  background: #0f4bd8;
  font-size: 12px;
  font-weight: 900;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 58px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  background: linear-gradient(90deg, #081d59 0%, #0f43c9 100%);
  border-bottom: 0;
  box-shadow: 0 10px 24px rgba(8, 29, 89, .16);
}

.brand,
.site-nav a {
  color: #ffffff;
}

.brand-mark {
  background: rgba(255, 255, 255, .16);
  color: #ffffff;
}

.site-nav {
  gap: 22px;
  color: rgba(255, 255, 255, .84);
}

.site-nav a:hover {
  color: #9ee8ff;
}

.nav-signup,
.nav-login {
  min-height: 34px;
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: #ffffff;
  box-shadow: none;
}

.nav-signup:hover,
.nav-login:hover {
  background: #ffffff;
  color: #0f43c9;
  border-color: #ffffff;
}

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 560px;
  margin: 0 auto;
  padding: 86px 0 42px;
  grid-template-columns: minmax(0, .88fr) minmax(440px, 1fr);
  gap: 70px;
  background: radial-gradient(560px 380px at 84% 30%, rgba(42, 155, 255, .16), transparent 70%);
}

.hero h1 {
  color: #071b4a;
  font-size: clamp(58px, 7vw, 86px);
  letter-spacing: 0;
}

.hero .description {
  max-width: 540px;
  margin-top: 18px;
  color: #122654;
  font-size: 27px;
  line-height: 1.42;
  font-weight: 850;
  word-break: keep-all;
}

.hero .actions {
  margin-top: 30px;
}

.button {
  min-height: 44px;
  border-radius: 8px;
}

.button.primary {
  background: linear-gradient(135deg, #1765ff, #0f43d6);
  box-shadow: 0 14px 26px rgba(23, 101, 255, .24);
}

.button.secondary {
  border-color: #9fb1d1;
  color: #071b4a;
}

.hero-note {
  display: flex;
  margin-top: 18px;
  color: #31456f;
  font-size: 13px;
  font-weight: 800;
}

.hero-note span::before {
  content: "✓";
  display: inline-grid;
  width: 18px;
  height: 18px;
  margin-right: 6px;
  place-items: center;
  border-radius: 50%;
  color: #0f4bd8;
  border: 1px solid #0f4bd8;
  font-size: 11px;
}

.market-preview .dashboard {
  max-width: 560px;
  border-radius: 18px;
  background: linear-gradient(145deg, #101d31 0%, #162d4a 100%);
  box-shadow: 0 24px 56px rgba(8, 29, 89, .30);
}

.quick-menu.quick-summary,
.section {
  width: min(1180px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.quick-menu.quick-summary {
  position: relative;
  z-index: 3;
  margin-top: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid #dbe4f2;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(8, 29, 89, .08);
}

.quick-menu.quick-summary a {
  min-height: 104px;
  padding: 22px 28px;
  border: 0;
  border-right: 1px solid #e3ebf6;
  border-radius: 0;
  background: #ffffff;
}

.quick-menu.quick-summary a:last-child {
  border-right: 0;
}

.quick-menu.quick-summary strong,
.quick-menu.quick-summary em {
  color: inherit;
}

.quick-menu.quick-summary strong {
  margin-top: 0;
  font-size: 17px;
}

.quick-menu.quick-summary em {
  color: #5b6b89;
}

.section {
  padding: 74px 0;
}

.section-heading.center {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.problem-copy h2,
.connected-copy h2 {
  color: #071b4a;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.28;
  letter-spacing: 0;
  word-break: keep-all;
}

.section-heading p,
.problem-copy p,
.connected-copy p,
.feature-card p,
.routine-flow p {
  color: #4f607e;
  line-height: 1.66;
  word-break: keep-all;
}

.problem-section {
  width: 100%;
  padding: 78px max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.25fr);
  gap: 52px;
  align-items: center;
  background: linear-gradient(180deg, #eef5fc 0%, #f8fbff 100%);
}

.problem-copy p {
  max-width: 520px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.pain-grid .icon-card {
  min-height: 156px;
  padding: 22px 16px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.pain-grid h3 {
  margin: 14px 0 0;
  color: #102653;
  font-size: 15px;
  line-height: 1.45;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.product-grid .feature-card {
  min-height: 196px;
  padding: 24px 18px;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
}

.product-grid .feature-card h3 {
  margin: 16px 0 10px;
  color: #071b4a;
  font-size: 17px;
  line-height: 1.35;
}

.product-grid .feature-card p {
  min-height: 0;
  margin: 0;
  display: block;
  font-size: 13px;
}

.icon-card {
  border: 1px solid #dce6f4;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(8, 29, 89, .06);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.line-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: #0f4bd8;
  background: #edf4ff;
  transition: color .2s ease, background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.line-icon svg {
  width: 32px;
  height: 32px;
}

.line-icon path,
.line-icon circle,
.line-icon rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-card:hover {
  transform: translateY(-5px);
  border-color: #1765ff;
  box-shadow: 0 18px 38px rgba(23, 101, 255, .16);
}

.icon-card:hover .line-icon {
  color: #ffffff;
  background: linear-gradient(135deg, #1765ff, #12b5ff);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 26px rgba(23, 101, 255, .28);
}

.icon-card:hover h3,
.icon-card:hover strong {
  color: #0f4bd8;
}

.routine-section {
  width: 100%;
  padding: 76px max(24px, calc((100vw - 1180px) / 2));
  background: #f4f9ff;
}

.routine-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  counter-reset: none;
}

.routine-flow article {
  min-height: 210px;
  padding: 22px 20px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto 1fr;
  justify-items: start;
  align-content: start;
  border-radius: 8px;
}

.routine-flow article::before,
.routine-flow .timeline-icon::before,
.routine-flow .timeline-icon::after {
  display: none;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  margin-bottom: 12px;
  border-radius: 999px;
  color: #ffffff;
  background: #1765ff;
  font-size: 12px;
  font-weight: 900;
}

.routine-flow h3 {
  margin: 14px 0 8px;
  color: #071b4a;
  font-size: 18px;
}

.routine-flow p {
  margin: 0;
  font-size: 13px;
}

.connected-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(380px, 1fr);
  gap: 56px;
  align-items: center;
}

.connected-copy ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.connected-copy li {
  position: relative;
  padding-left: 30px;
  color: #203661;
  font-weight: 800;
  line-height: 1.55;
}

.connected-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: #1765ff;
  font-size: 12px;
}

.device-showcase {
  position: relative;
  min-height: 290px;
}

.laptop-preview,
.phone-preview {
  position: absolute;
  border: 8px solid #17243a;
  background: #101d31;
  box-shadow: 0 24px 44px rgba(8, 29, 89, .22);
}

.laptop-preview {
  left: 0;
  bottom: 0;
  width: 78%;
  height: 245px;
  border-radius: 12px;
}

.laptop-preview::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -22px;
  height: 14px;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, #b7c5dc, #718198);
}

.phone-preview {
  right: 0;
  bottom: 10px;
  width: 136px;
  height: 220px;
  border-radius: 22px;
}

.mini-dashboard {
  display: grid;
  grid-template-columns: 1.25fr .8fr;
  gap: 12px;
  height: 100%;
  padding: 18px;
}

.mini-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 7px;
  min-height: 132px;
}

.phone-preview .mini-bars {
  grid-template-columns: repeat(4, 1fr);
  padding: 26px 18px 0;
}

.mini-bars i {
  display: block;
  height: 44%;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, #38bdf8, #1765ff);
}

.mini-bars i:nth-child(2) { height: 68%; }
.mini-bars i:nth-child(3) { height: 84%; }
.mini-bars i:nth-child(4) { height: 52%; }
.mini-bars i:nth-child(5) { height: 74%; }
.mini-bars i:nth-child(6) { height: 60%; }

.mini-list {
  display: grid;
  align-content: center;
  gap: 12px;
}

.mini-list span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .22);
}

.phone-preview .mini-list {
  padding: 18px;
}

.pricing-section {
  width: 100%;
  padding: 80px max(24px, calc((100vw - 1180px) / 2));
  background: #eef5fc;
}

.pricing-grid,
.pricing-grid.pricing-grid--multi {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.price-card {
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(8, 29, 89, .08);
}

.price-card.featured {
  background: linear-gradient(180deg, #115df1, #0f43c9);
  border-color: #0f43c9;
  color: #ffffff;
  transform: translateY(-10px);
}

.price-card.featured h3,
.price-card.featured strong,
.price-card.featured p,
.price-card.featured li,
.price-card.featured .plan-meta,
.price-card.featured .plan-service-heading {
  color: #ffffff;
}

.company-section,
.notice {
  background: #ffffff;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .market-preview .dashboard {
    margin: 0;
  }

  .problem-section,
  .connected-section {
    grid-template-columns: 1fr;
  }

  .pain-grid,
  .product-grid,
  .routine-flow,
  .pricing-grid,
  .pricing-grid.pricing-grid--multi {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .notice-inner,
  .site-header,
  .hero,
  .quick-menu.quick-summary,
  .section {
    width: calc(100% - 28px);
  }

  .notice-inner,
  .site-header {
    padding-left: 0;
    padding-right: 0;
  }

  .site-header {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .site-nav {
    gap: 10px;
    font-size: 12px;
  }

  .hero {
    min-height: 0;
    padding-top: 54px;
    grid-template-columns: 1fr;
  }

  .hero .description {
    font-size: 22px;
  }

  .quick-menu.quick-summary,
  .pain-grid,
  .product-grid,
  .routine-flow,
  .pricing-grid,
  .pricing-grid.pricing-grid--multi {
    grid-template-columns: 1fr;
  }

  .quick-menu.quick-summary a {
    border-right: 0;
    border-bottom: 1px solid #e3ebf6;
  }

  .problem-section,
  .routine-section,
  .pricing-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .connected-section {
    padding-bottom: 44px;
  }

  .device-showcase {
    min-height: 250px;
  }

  .laptop-preview {
    width: 84%;
    height: 205px;
  }

  .phone-preview {
    width: 112px;
    height: 190px;
  }
}
/* 2026-06 reference mockup alignment pass */
:root {
  --landing-max: 1240px;
}

body.landing-page {
  background: #eef4fb;
}

.top-notice {
  min-height: 36px;
}

.notice-inner {
  width: min(var(--landing-max), calc(100% - 40px));
  min-height: 36px;
  font-size: 12px;
}

.site-header {
  min-height: 56px;
  padding-left: max(24px, calc((100vw - var(--landing-max)) / 2));
  padding-right: max(24px, calc((100vw - var(--landing-max)) / 2));
}

.hero {
  width: min(var(--landing-max), calc(100% - 40px));
  min-height: 520px;
  padding: 70px 0 34px;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: radial-gradient(520px 360px at 88% 34%, rgba(33, 150, 255, .16), transparent 72%) !important;
  grid-template-columns: minmax(0, .9fr) minmax(500px, 1fr);
  gap: 58px;
}

.hero .eyebrow {
  margin-bottom: 12px;
  font-size: 12px;
}

.hero h1 {
  font-size: clamp(58px, 6.1vw, 78px);
  line-height: .98;
}

.hero .description {
  max-width: 555px;
  margin-top: 20px;
  font-size: 25px;
  line-height: 1.42;
}

.hero .actions {
  margin-top: 30px;
}

.hero .button {
  min-width: 148px;
  min-height: 44px;
}

.hero-note {
  margin-top: 16px;
}

.market-preview .dashboard {
  max-width: 560px;
  min-height: 415px;
  margin-left: auto;
}

.quick-menu.quick-summary {
  width: min(var(--landing-max), calc(100% - 40px));
  margin-top: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-radius: 8px;
}

.quick-menu.quick-summary a {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 16px;
  align-items: center;
  min-height: 112px;
  padding: 22px 28px;
}

.quick-menu.quick-summary .line-icon {
  grid-row: 1 / 3;
  width: 54px;
  height: 54px;
}

.quick-menu.quick-summary .line-icon svg {
  width: 29px;
  height: 29px;
}

.quick-menu.quick-summary strong {
  align-self: end;
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.25;
}

.quick-menu.quick-summary em {
  align-self: start;
  font-size: 12px;
  line-height: 1.45;
}

.section {
  width: min(var(--landing-max), calc(100% - 40px));
  padding: 58px 0;
}

.problem-section {
  width: 100%;
  padding: 66px max(24px, calc((100vw - var(--landing-max)) / 2));
  grid-template-columns: minmax(330px, .82fr) minmax(640px, 1.18fr);
  gap: 46px;
  background: #eef4fb;
}

.problem-copy h2 {
  max-width: 420px;
  font-size: 36px;
  line-height: 1.28;
}

.problem-copy p {
  max-width: 520px;
  margin-top: 26px;
  font-size: 15px;
  line-height: 1.72;
}

.pain-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.pain-grid .icon-card {
  min-height: 156px;
  padding: 22px 16px;
}

.pain-grid .line-icon {
  width: 58px;
  height: 58px;
}

.pain-grid h3 {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.48;
}

.feature-section {
  width: 100%;
  padding: 62px max(24px, calc((100vw - var(--landing-max)) / 2)) 70px;
  background: #f7fbff;
}

.section-heading.center {
  margin-bottom: 36px;
}

.section-heading.center h2 {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  font-size: 34px;
}

.product-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.product-grid .feature-card {
  min-height: 185px;
  padding: 24px 16px 22px;
  display: grid;
  justify-items: center;
  align-content: start;
}

.product-grid .feature-card h3 {
  display: block !important;
  overflow: visible !important;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: initial !important;
  min-height: 44px;
  margin: 14px 0 10px;
  font-size: 16px;
  line-height: 1.36;
  word-break: keep-all;
}

.product-grid .feature-card p {
  display: block !important;
  overflow: visible !important;
  -webkit-line-clamp: unset !important;
  min-height: 0;
  font-size: 12px;
  line-height: 1.58;
}

.product-grid .line-icon {
  width: 58px;
  height: 58px;
}

.workflow-section.routine-section {
  display: block !important;
  width: 100%;
  padding: 58px max(24px, calc((100vw - var(--landing-max)) / 2)) 68px;
  background: #ffffff;
}

.workflow-section.routine-section .section-heading.center h2 {
  font-size: 32px;
}

.routine-flow {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  max-width: var(--landing-max);
  margin: 0 auto;
}

.routine-flow article {
  position: relative;
  min-height: 190px;
  padding: 18px 20px 20px;
  justify-items: center;
  text-align: center;
}

.routine-flow article:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -19px;
  color: #1765ff;
  font-size: 26px;
  font-weight: 900;
  transform: translateY(-50%);
}

.step-badge {
  margin-bottom: 12px;
  min-height: 24px;
  padding: 0 12px;
}

.routine-flow .line-icon {
  width: 58px;
  height: 58px;
}

.routine-flow h3 {
  min-height: 46px;
  margin: 14px 0 8px;
  font-size: 18px;
  line-height: 1.28;
  word-break: keep-all;
}

.routine-flow p {
  font-size: 12px;
  line-height: 1.58;
}

.connected-section {
  width: min(var(--landing-max), calc(100% - 40px));
  padding: 70px 0 66px;
  grid-template-columns: minmax(0, .88fr) minmax(440px, 1fr);
  gap: 58px;
}

.connected-copy h2 {
  max-width: 620px;
  font-size: 36px;
}

.connected-copy ul {
  margin-top: 26px;
  gap: 10px;
}

.device-showcase {
  min-height: 265px;
}

.laptop-preview {
  height: 230px;
}

.phone-preview {
  width: 126px;
  height: 205px;
}

.pricing-section {
  padding: 66px max(24px, calc((100vw - var(--landing-max)) / 2));
}

.pricing-section .section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.pricing-section .section-heading h2 {
  font-size: 36px;
}

.pricing-grid,
.pricing-grid.pricing-grid--multi {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 16px;
}

.price-card {
  min-height: 410px;
  padding: 28px 24px !important;
  border-radius: 8px;
}

.price-card.featured {
  transform: translateY(-8px);
}

.price-card h3 {
  font-size: 22px;
}

.price-card > strong {
  font-size: 30px;
  line-height: 1.2;
}

.price-card p,
.price-note,
.plan-feature-list li {
  font-size: 13px;
  line-height: 1.55;
}

.plan-feature-list {
  gap: 7px;
}

.price-card--pro {
  background: #17243a;
  color: #ffffff;
  border-color: #17243a;
}

.price-card--pro h3,
.price-card--pro strong,
.price-card--pro p,
.price-card--pro li,
.price-card--pro .plan-meta,
.price-card--pro .plan-service-heading {
  color: #ffffff;
}

.company-section {
  width: min(var(--landing-max), calc(100% - 40px));
  padding: 56px 0;
  background: #ffffff;
}

.company-section .section-heading h2 {
  font-size: 34px;
}

.company-layout {
  gap: 24px;
}

.info-table div {
  min-height: 54px;
}

.trust-box {
  padding: 28px;
}

.notice {
  width: min(var(--landing-max), calc(100% - 40px));
  margin: 0 auto 24px;
  padding: 28px 32px;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(8, 29, 89, .04);
}

.notice h2 {
  font-size: 28px;
}

.notice p {
  max-width: none;
}

@media (max-width: 1180px) {
  .hero,
  .problem-section,
  .connected-section {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .pricing-grid,
  .pricing-grid.pricing-grid--multi {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .pain-grid,
  .routine-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .routine-flow article:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .notice-inner,
  .hero,
  .quick-menu.quick-summary,
  .connected-section,
  .company-section,
  .notice {
    width: calc(100% - 28px);
  }

  .quick-menu.quick-summary,
  .pain-grid,
  .product-grid,
  .routine-flow,
  .pricing-grid,
  .pricing-grid.pricing-grid--multi {
    grid-template-columns: 1fr !important;
  }

  .problem-section,
  .feature-section,
  .workflow-section.routine-section,
  .pricing-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero .description {
    font-size: 21px;
  }
}
/* Fix connected illustration and pricing card sizing */
.connected-section {
  align-items: center;
  padding-top: 62px;
  padding-bottom: 54px;
}

.device-showcase {
  min-height: 270px;
  max-width: 620px;
  margin-left: auto;
  overflow: visible;
}

.laptop-preview {
  left: 0;
  bottom: 18px;
  width: 78%;
  height: 225px;
  border-width: 7px;
  border-radius: 12px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    #101d31;
  background-size: 42px 42px, 42px 42px, auto;
}

.laptop-preview::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 6px;
  pointer-events: none;
}

.laptop-preview::after {
  left: 14%;
  right: 14%;
  bottom: -17px;
  height: 16px;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, #a8b9ce 0%, #74869d 100%);
  box-shadow: inset 0 3px 0 rgba(255, 255, 255, .25);
}

.laptop-preview .mini-dashboard {
  grid-template-columns: 1.18fr .82fr;
  gap: 18px;
  padding: 34px 28px 28px;
}

.laptop-preview .mini-bars {
  min-height: 150px;
  gap: 10px;
}

.laptop-preview .mini-list {
  gap: 14px;
  align-content: center;
}

.laptop-preview .mini-list span {
  height: 12px;
  background: rgba(164, 178, 198, .42);
}

.phone-preview {
  right: 0;
  bottom: 32px;
  width: 112px;
  height: 188px;
  border-width: 7px;
  border-radius: 23px;
  overflow: hidden;
  background: #101d31;
}

.phone-preview::before,
.phone-preview::after {
  display: none !important;
}

.phone-preview .mini-bars {
  min-height: 82px;
  padding: 44px 18px 0;
  gap: 8px;
}

.phone-preview .mini-list {
  gap: 10px;
  padding: 16px 18px 0;
}

.phone-preview .mini-list span {
  height: 10px;
  background: rgba(164, 178, 198, .38);
}

.pricing-section {
  padding-top: 56px;
  overflow: visible;
}

.pricing-section .section-heading {
  width: min(var(--landing-max), calc(100% - 40px));
  max-width: var(--landing-max);
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid,
.pricing-grid.pricing-grid--multi {
  width: min(var(--landing-max), calc(100% - 40px));
  max-width: var(--landing-max) !important;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: repeat(4, minmax(240px, 1fr)) !important;
  align-items: stretch;
  gap: 18px;
}

.price-card {
  min-width: 0;
  min-height: 450px;
  padding: 26px 24px !important;
  word-break: keep-all;
  overflow-wrap: normal;
}

.price-card h3,
.price-card > strong,
.price-card p,
.price-card li,
.price-card .plan-meta,
.price-card .plan-service-heading,
.price-card .button {
  word-break: keep-all;
  overflow-wrap: normal;
}

.price-card > strong {
  white-space: normal;
  font-size: clamp(24px, 2.2vw, 30px);
}

.price-card p,
.price-note {
  font-size: 13px;
  line-height: 1.58;
}

.plan-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.plan-meta span {
  white-space: nowrap;
  font-size: 12px;
}

.plan-feature-list li {
  padding-left: 24px;
  font-size: 12px;
  line-height: 1.45;
}

.price-card--pro {
  background: #17243a !important;
  border-color: #17243a !important;
}

.price-card--pro .plan-badge {
  color: #ffffff;
  background: rgba(23, 101, 255, .34);
}

.price-card--pro .button.secondary {
  color: #17243a;
  border-color: #ffffff;
  background: #ffffff;
}

@media (max-width: 1120px) {
  .pricing-grid,
  .pricing-grid.pricing-grid--multi {
    grid-template-columns: repeat(2, minmax(260px, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .device-showcase {
    max-width: 100%;
    min-height: 230px;
  }

  .laptop-preview {
    width: 82%;
    height: 190px;
  }

  .phone-preview {
    width: 96px;
    height: 166px;
  }

  .pricing-grid,
  .pricing-grid.pricing-grid--multi {
    width: calc(100% - 28px);
    grid-template-columns: minmax(0, 1fr) !important;
  }
}
/* Final hard fix: connected mockup and desktop pricing width */
.connected-section {
  width: min(1240px, calc(100% - 40px)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 54px 0 42px !important;
  display: grid !important;
  grid-template-columns: minmax(430px, .82fr) minmax(560px, 1fr) !important;
  gap: 52px !important;
  align-items: center !important;
  overflow: visible !important;
}

.connected-copy h2 {
  max-width: 560px !important;
  font-size: 34px !important;
  line-height: 1.24 !important;
}

.connected-copy ul {
  margin-top: 24px !important;
  gap: 9px !important;
}

.connected-copy li {
  font-size: 15px !important;
  line-height: 1.5 !important;
}

.device-showcase {
  position: relative !important;
  width: 100% !important;
  max-width: 690px !important;
  height: 300px !important;
  min-height: 300px !important;
  margin: 0 0 0 auto !important;
  overflow: visible !important;
}

.device-showcase::before {
  content: "";
  position: absolute;
  inset: 34px 0 16px 56px;
  border-radius: 28px;
  background: radial-gradient(circle at 42% 55%, rgba(23, 101, 255, .18), transparent 48%);
  filter: blur(18px);
  opacity: .85;
  pointer-events: none;
}

.laptop-preview {
  position: absolute !important;
  left: 8px !important;
  right: auto !important;
  bottom: 44px !important;
  width: 520px !important;
  height: 220px !important;
  border: 8px solid #17243a !important;
  border-radius: 12px !important;
  overflow: visible !important;
  background: #101d31 !important;
  box-shadow: 0 28px 58px rgba(15, 32, 58, .24) !important;
}

.laptop-preview::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  border-radius: 4px !important;
  background:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    transparent !important;
  background-size: 52px 52px, 52px 52px, auto !important;
  pointer-events: none !important;
}

.laptop-preview::after {
  content: "" !important;
  position: absolute !important;
  left: 82px !important;
  right: 82px !important;
  bottom: -24px !important;
  height: 18px !important;
  border-radius: 0 0 18px 18px !important;
  background: linear-gradient(180deg, #aab9cc 0%, #7789a0 100%) !important;
  box-shadow: inset 0 4px 0 rgba(255,255,255,.25), 0 14px 20px rgba(23, 38, 60, .18) !important;
}

.laptop-preview .mini-dashboard {
  position: relative !important;
  z-index: 1 !important;
  display: grid !important;
  grid-template-columns: 1.25fr .88fr !important;
  gap: 26px !important;
  height: 100% !important;
  padding: 46px 34px 34px !important;
}

.laptop-preview .mini-dashboard::before {
  content: "시장 흐름";
  position: absolute;
  top: 18px;
  left: 34px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 900;
}

.laptop-preview .mini-bars {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr) !important;
  align-items: end !important;
  gap: 11px !important;
  min-height: 132px !important;
  padding: 0 !important;
}

.mini-bars i {
  background: linear-gradient(180deg, #38bdf8 0%, #1765ff 100%) !important;
  border-radius: 5px 5px 0 0 !important;
}

.laptop-preview .mini-list {
  display: grid !important;
  align-content: center !important;
  gap: 13px !important;
  padding: 0 !important;
}

.laptop-preview .mini-list span {
  width: 100% !important;
  height: 12px !important;
  border-radius: 999px !important;
  background: rgba(151, 165, 184, .46) !important;
}

.phone-preview {
  position: absolute !important;
  right: 14px !important;
  bottom: 56px !important;
  width: 118px !important;
  height: 194px !important;
  border: 8px solid #17243a !important;
  border-radius: 26px !important;
  overflow: hidden !important;
  background: #101d31 !important;
  box-shadow: 0 28px 58px rgba(15, 32, 58, .20) !important;
}

.phone-preview::before,
.phone-preview::after {
  display: none !important;
  content: none !important;
}

.phone-preview .mini-bars {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  align-items: end !important;
  gap: 8px !important;
  min-height: 88px !important;
  padding: 40px 18px 0 !important;
}

.phone-preview .mini-list {
  display: grid !important;
  gap: 10px !important;
  padding: 18px 18px 0 !important;
}

.phone-preview .mini-list span {
  height: 10px !important;
  border-radius: 999px !important;
  background: rgba(151, 165, 184, .48) !important;
}

.pricing-section {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 56px 0 72px !important;
  background: #eef4fb !important;
  overflow: visible !important;
}

.pricing-section .section-heading {
  width: min(1240px, calc(100% - 40px)) !important;
  max-width: 1240px !important;
  margin: 0 auto 34px !important;
  text-align: left !important;
}

.pricing-section .section-heading h2 {
  max-width: 640px !important;
  margin: 0 !important;
  font-size: 36px !important;
  line-height: 1.2 !important;
}

.pricing-section .section-heading p:not(.eyebrow) {
  max-width: 780px !important;
  margin-top: 18px !important;
  font-size: 15px !important;
}

.pricing-grid,
.pricing-grid.pricing-grid--multi {
  width: min(1240px, calc(100% - 40px)) !important;
  max-width: 1240px !important;
  min-width: 0 !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch !important;
}

.price-card {
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 430px !important;
  padding: 26px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  white-space: normal !important;
}

.price-card h3,
.price-card > strong,
.price-card p,
.price-card li,
.price-card .plan-meta,
.price-card .plan-service-heading,
.price-card .button {
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  white-space: normal !important;
}

.price-card h3 {
  font-size: 22px !important;
  line-height: 1.3 !important;
}

.price-card > strong {
  font-size: 28px !important;
  line-height: 1.22 !important;
}

.price-card p,
.price-note,
.plan-feature-list li {
  font-size: 13px !important;
  line-height: 1.52 !important;
}

.plan-meta span {
  white-space: nowrap !important;
}

.price-card.featured {
  transform: translateY(-8px) !important;
}

.price-card--pro {
  background: #17243a !important;
  border-color: #17243a !important;
}

.price-card--pro h3,
.price-card--pro strong,
.price-card--pro p,
.price-card--pro li,
.price-card--pro .plan-meta,
.price-card--pro .plan-meta span,
.price-card--pro .plan-service-heading {
  color: #ffffff !important;
}

.price-card--pro .button.secondary {
  color: #17243a !important;
  background: #ffffff !important;
  border-color: #ffffff !important;
}

@media (max-width: 980px) {
  .connected-section {
    grid-template-columns: 1fr !important;
  }

  .device-showcase {
    margin: 0 auto !important;
  }

  .pricing-grid,
  .pricing-grid.pricing-grid--multi {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .pricing-grid,
  .pricing-grid.pricing-grid--multi {
    grid-template-columns: 1fr !important;
  }
}
/* Landing section card polish */
body.landing-page .quick-menu.quick-summary {
  overflow: hidden;
  border: 1px solid #d8e4f4;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 18px 42px rgba(15, 32, 58, .08);
}

body.landing-page .quick-menu.quick-summary a,
body.landing-page .pain-grid .icon-card,
body.landing-page .product-grid .feature-card,
body.landing-page .routine-flow article {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .98) 0%, rgba(248, 251, 255, .96) 100%);
  border: 1px solid rgba(197, 211, 232, .78);
  box-shadow: 0 14px 34px rgba(15, 32, 58, .075);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

body.landing-page .quick-menu.quick-summary a::before,
body.landing-page .pain-grid .icon-card::before,
body.landing-page .product-grid .feature-card::before,
body.landing-page .routine-flow article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #1765ff, #38bdf8);
}

body.landing-page .quick-menu.quick-summary a:hover,
body.landing-page .quick-menu.quick-summary a:focus-visible,
body.landing-page .pain-grid .icon-card:hover,
body.landing-page .pain-grid .icon-card:focus-within,
body.landing-page .product-grid .feature-card:hover,
body.landing-page .product-grid .feature-card:focus-within,
body.landing-page .routine-flow article:hover,
body.landing-page .routine-flow article:focus-within {
  transform: translateY(-4px);
  border-color: rgba(23, 101, 255, .36);
  background: linear-gradient(135deg, #ffffff 0%, #f2f8ff 100%);
  box-shadow: 0 22px 52px rgba(15, 32, 58, .12);
}

body.landing-page .quick-menu.quick-summary .line-icon,
body.landing-page .pain-grid .line-icon,
body.landing-page .product-grid .line-icon,
body.landing-page .routine-flow .line-icon {
  display: grid;
  place-items: center;
  border: 1px solid rgba(191, 219, 254, .86);
  border-radius: 18px;
  background: linear-gradient(145deg, #f8fbff 0%, #e8f1ff 100%);
  color: #1765ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85), 0 10px 22px rgba(23, 101, 255, .10);
}

body.landing-page .quick-menu.quick-summary .line-icon svg,
body.landing-page .pain-grid .line-icon svg,
body.landing-page .product-grid .line-icon svg,
body.landing-page .routine-flow .line-icon svg {
  stroke-width: 2.4;
}

body.landing-page .quick-menu.quick-summary a:nth-child(2)::before,
body.landing-page .pain-grid .icon-card:nth-child(2)::before,
body.landing-page .product-grid .feature-card:nth-child(2)::before,
body.landing-page .routine-flow article:nth-child(2)::before {
  background: linear-gradient(90deg, #0f9f6e, #38bdf8);
}

body.landing-page .quick-menu.quick-summary a:nth-child(3)::before,
body.landing-page .pain-grid .icon-card:nth-child(3)::before,
body.landing-page .product-grid .feature-card:nth-child(3)::before,
body.landing-page .routine-flow article:nth-child(3)::before {
  background: linear-gradient(90deg, #f59e0b, #38bdf8);
}

body.landing-page .quick-menu.quick-summary a:nth-child(4)::before,
body.landing-page .pain-grid .icon-card:nth-child(4)::before,
body.landing-page .product-grid .feature-card:nth-child(4)::before,
body.landing-page .routine-flow article:nth-child(4)::before {
  background: linear-gradient(90deg, #3157d8, #38bdf8);
}

body.landing-page .pain-grid .icon-card:nth-child(5)::before,
body.landing-page .product-grid .feature-card:nth-child(5)::before,
body.landing-page .routine-flow article:nth-child(5)::before {
  background: linear-gradient(90deg, #7c3aed, #38bdf8);
}

body.landing-page .product-grid .feature-card:nth-child(6)::before {
  background: linear-gradient(90deg, #0f766e, #38bdf8);
}

body.landing-page .routine-flow article {
  padding-top: 24px;
}

body.landing-page .routine-flow article:not(:last-child)::after {
  top: 48%;
  right: -22px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid #d8e4f4;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 32, 58, .10);
  color: #1765ff;
  font-size: 18px;
}

body.landing-page .routine-flow .step-badge {
  border: 1px solid rgba(23, 101, 255, .16);
  background: linear-gradient(180deg, #1765ff 0%, #1557d8 100%);
  box-shadow: 0 10px 22px rgba(23, 101, 255, .18);
}

:root[data-theme="dark"] body.landing-page .quick-menu.quick-summary,
:root[data-theme="dark"] body.landing-page .quick-menu.quick-summary a,
:root[data-theme="dark"] body.landing-page .pain-grid .icon-card,
:root[data-theme="dark"] body.landing-page .product-grid .feature-card,
:root[data-theme="dark"] body.landing-page .routine-flow article {
  border-color: rgba(148, 163, 184, .24);
  background: linear-gradient(135deg, rgba(15, 23, 42, .92) 0%, rgba(20, 36, 63, .9) 100%);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
}

@media (max-width: 1180px) {
  body.landing-page .routine-flow article:not(:last-child)::after {
    display: none;
  }
}
/* Readability contrast and fixed-header anchor offset */
html {
  scroll-padding-top: 96px;
}

body.landing-page #pricing,
body.landing-page #company {
  scroll-margin-top: 96px;
}

html body.landing-page .hero .description {
  color: #475569 !important;
  font-weight: 600 !important;
  text-shadow: none !important;
}

html body.landing-page .pricing-section--plans .pricing-grid--plans > .price-card.price-card--trial {
  opacity: 1 !important;
  color: #0f172a !important;
}

html body.landing-page .pricing-section--plans .pricing-grid--plans > .price-card.price-card--trial h3,
html body.landing-page .pricing-section--plans .pricing-grid--plans > .price-card.price-card--trial > strong,
html body.landing-page .pricing-section--plans .pricing-grid--plans > .price-card.price-card--trial .plan-service-heading {
  color: #0f172a !important;
  font-weight: 900 !important;
}

html body.landing-page .pricing-section--plans .pricing-grid--plans > .price-card.price-card--trial > p:not(.price-note),
html body.landing-page .pricing-section--plans .pricing-grid--plans > .price-card.price-card--trial .price-note {
  color: #475569 !important;
  font-weight: 700 !important;
}

html body.landing-page .pricing-section--plans .pricing-grid--plans > .price-card.price-card--trial .plan-feature-list li {
  color: #334155 !important;
  font-weight: 700 !important;
}

html body.landing-page .pricing-section--plans .pricing-grid--plans > .price-card.price-card--trial .plan-badge {
  color: #1d4ed8 !important;
  background: #eff6ff !important;
  border-color: #bfdbfe !important;
}

html body.landing-page .pricing-section--plans .pricing-grid--plans > .price-card.price-card--trial .button.is-disabled {
  opacity: 1 !important;
  color: #334155 !important;
  background: #f8fafc !important;
  border-color: #cbd5e1 !important;
}

html body.landing-page #company .info-table dd {
  color: #334155 !important;
  font-weight: 600 !important;
}

html body.landing-page #company .trust-box h3,
html body.landing-page #company .company-safe-card h3 {
  color: #0f172a !important;
  font-weight: 900 !important;
}

html body.landing-page #company .trust-box p,
html body.landing-page #company .company-safe-card p,
html body.landing-page #company .escrow-placeholder,
html body.landing-page #company .escrow-caption {
  color: #475569 !important;
  font-weight: 600 !important;
}

:root[data-theme="dark"] body.landing-page .hero .description {
  color: #dbeafe !important;
  font-weight: 600 !important;
}

:root[data-theme="dark"] body.landing-page #company .info-table,
:root[data-theme="dark"] body.landing-page #company .trust-box,
:root[data-theme="dark"] body.landing-page #company .company-safe-card {
  background: rgba(15, 23, 42, .94) !important;
  border-color: rgba(148, 163, 184, .32) !important;
}

:root[data-theme="dark"] body.landing-page #company .info-table dt {
  color: #f8fafc !important;
  background: #1e293b !important;
}

:root[data-theme="dark"] body.landing-page #company .info-table dd,
:root[data-theme="dark"] body.landing-page #company .trust-box p,
:root[data-theme="dark"] body.landing-page #company .company-safe-card p,
:root[data-theme="dark"] body.landing-page #company .escrow-caption {
  color: #dbeafe !important;
}

:root[data-theme="dark"] body.landing-page #company .escrow-placeholder {
  color: #dbeafe !important;
  background: #111827 !important;
  border-color: rgba(148, 163, 184, .28) !important;
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 132px;
  }

  body.landing-page #pricing,
  body.landing-page #company {
    scroll-margin-top: 132px;
  }
}

@media (max-width: 430px) {
  html {
    scroll-padding-top: 148px;
  }

  body.landing-page #pricing,
  body.landing-page #company {
    scroll-margin-top: 148px;
  }
}
