:root {
  color-scheme: light;
  --blue: #2563eb;
  --blue-dark: #1647b9;
  --ink: #0e1422;
  --ink-soft: #4b5567;
  --muted: #6b7486;
  --line: #dce5f3;
  --paper: #f8fbff;
  --surface: #ffffff;
  --surface-blue: #eef5ff;
  --night: #121826;
  --green: #12a15f;
  --radius: 8px;
  --shadow: 0 22px 58px rgba(20, 35, 68, 0.14);
  --wrap: min(1120px, calc(100% - 40px));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, summary { font: inherit; }
.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 40;
  transform: translateY(-150%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(248, 251, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.nav {
  width: var(--wrap);
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
  font-weight: 800;
}
.brand span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
}
.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links > a,
.nav-menu summary {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 0;
  border-radius: var(--radius);
  padding: 0 12px;
  color: var(--ink-soft);
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  font-size: 0.93rem;
  font-weight: 700;
  list-style: none;
}
.nav-menu summary::-webkit-details-marker { display: none; }
.nav-links > a:hover,
.nav-menu summary:hover {
  color: var(--blue-dark);
  background: var(--surface-blue);
}
.nav-cta {
  color: #fff !important;
  background: var(--blue) !important;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
}
.nav-menu { position: relative; }
.nav-menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 220px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}
.nav-menu:not([open]) .nav-menu-panel { display: none; }
.nav-menu-panel a {
  padding: 9px 10px;
  border-radius: var(--radius);
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 700;
}
.nav-menu-panel a:hover {
  color: var(--blue-dark);
  background: var(--surface-blue);
}

.hero {
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, #f8fbff 0%, #edf4ff 100%);
  background-size: 44px 44px, 44px 44px, auto;
  border-bottom: 1px solid var(--line);
}

.hero-old {
  background:
    radial-gradient(circle at 50% 0%, rgba(111, 135, 255, 0.42), transparent 42%),
    linear-gradient(135deg, #111843 0%, #1e2d8e 48%, #2c42c8 100%);
  color: #f7f9ff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-old-inner {
  width: var(--wrap);
  min-height: clamp(560px, 76svh, 740px);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 118px) 0 clamp(56px, 7vw, 86px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin: 0 0 28px;
  padding: 0 18px;
  border: 1px solid rgba(210, 221, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #cfd9ff;
  font-size: 0.82rem;
  font-weight: 820;
  text-transform: uppercase;
}

.hero-old h1 {
  max-width: 860px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  font-size: clamp(2.7rem, 6vw, 5.25rem);
  line-height: 1.04;
}

.hero-subtitle {
  max-width: 680px;
  margin: 26px 0 0;
  color: #c4cdfd;
  font-size: clamp(1.05rem, 1.55vw, 1.26rem);
}

.center-actions {
  justify-content: center;
}

.light-cta {
  background: #7892ff;
  color: #fff;
  box-shadow: 0 18px 42px rgba(16, 24, 67, 0.32);
}

.light-cta:hover {
  background: #8da2ff;
}

.btn-ghost-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost-dark:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero-pills,
.privacy-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.hero-pills span,
.privacy-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #d6ddff;
  padding: 0 14px;
  font-size: 0.88rem;
  font-weight: 700;
}

.screenshots-band {
  background: #f1f4ff;
  border-bottom: 1px solid var(--line);
}

.screenshot-section {
  text-align: center;
}

.screenshot-section h2,
.about-strip h2,
.features-band h2,
.final-cta h2 {
  max-width: 780px;
  margin: 0 auto;
  font-size: clamp(2rem, 4.5vw, 3.55rem);
}

.screenshot-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 18px;
  align-items: start;
  margin-top: 38px;
}

.screenshot-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 16px;
  box-shadow: var(--shadow);
}

.screenshot-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.screenshot-card figcaption {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 720;
}

.main-shot {
  transform: translateY(-18px);
}

.about-strip {
  text-align: center;
}

.about-box {
  max-width: 880px;
  margin: 34px auto 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8fbff;
  padding: clamp(22px, 4vw, 36px);
  text-align: left;
  box-shadow: 0 14px 34px rgba(20, 35, 68, 0.07);
}

.about-box p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.about-box p + p {
  margin-top: 12px;
}

.about-box strong {
  color: var(--ink);
}

.workflow-section {
  text-align: center;
}

.workflow-section h2 {
  max-width: 780px;
  margin: 0 auto;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
  text-align: left;
}

.workflow-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 12px 26px rgba(20, 35, 68, 0.06);
}

.workflow-card span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--surface-blue);
  color: var(--blue-dark);
  font-weight: 850;
}

.workflow-card p {
  margin: 0;
  color: var(--muted);
}

.limit-note {
  max-width: 860px;
  margin: 22px auto 0;
  border: 1px solid rgba(37, 99, 235, 0.22);
  border-radius: 12px;
  background: var(--surface-blue);
  color: var(--ink-soft);
  padding: 16px 18px;
  text-align: left;
}

.limit-note strong {
  color: var(--ink);
}

.features-band {
  background: #f1f4ff;
  border-block: 1px solid var(--line);
  text-align: center;
}

.feature-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
  text-align: left;
}

.feature-card {
  min-height: 194px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 12px 26px rgba(20, 35, 68, 0.06);
}

.feature-card span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: var(--surface-blue);
  color: var(--blue-dark);
  padding: 0 11px;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.privacy-strip {
  background:
    radial-gradient(circle at 50% 0%, rgba(111, 135, 255, 0.25), transparent 38%),
    linear-gradient(135deg, #111843 0%, #1d2b83 100%);
  color: #fff;
}

.privacy-inner {
  width: var(--wrap);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 92px) 0;
  text-align: center;
}

.privacy-inner h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.privacy-inner p {
  max-width: 640px;
  margin: 18px auto 0;
  color: #c4cdfd;
  font-size: 1.05rem;
}

.final-cta {
  text-align: center;
}

.final-cta p {
  max-width: 520px;
  margin: 16px auto 28px;
  color: var(--ink-soft);
  font-size: 1.04rem;
}
.hero-inner {
  width: var(--wrap);
  min-height: calc(100svh - 68px);
  margin: 0 auto;
  padding: clamp(44px, 7vw, 84px) 0 clamp(34px, 5vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 7px 11px;
  border: 1px solid rgba(37, 99, 235, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 800;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(18, 161, 95, 0.14);
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  font-size: clamp(3rem, 7.4vw, 6.35rem);
  line-height: 0.92;
  letter-spacing: 0;
  font-weight: 880;
}
h2 {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 860;
}
h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  line-height: 1.2;
}
.hero-copy {
  max-width: 580px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  text-decoration: none;
  font-weight: 800;
}
.btn svg { width: 20px; height: 20px; flex: 0 0 auto; }
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.24);
}
.btn-primary:hover { background: var(--blue-dark); }
.btn-secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
  box-shadow: 0 12px 24px rgba(20, 35, 68, 0.08);
}
.proof-row,
.mini-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}
.proof-row span,
.mini-checks span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink-soft);
  padding: 0 11px;
  font-size: 0.9rem;
  font-weight: 750;
}
.hero-product { min-width: 0; }
.real-shot-card,
.product-figure {
  max-width: 420px;
  margin: 0 auto;
  border: 1px solid rgba(14, 20, 34, 0.14);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
.real-shot-card img,
.product-figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.quick-bar {
  width: var(--wrap);
  margin: -22px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 34px rgba(20, 35, 68, 0.08);
}
.quick-item {
  padding: 20px;
  border-right: 1px solid var(--line);
}
.quick-item:last-child { border-right: 0; }
.quick-item strong { display: block; font-size: 1.05rem; }
.quick-item span { display: block; margin-top: 4px; color: var(--muted); font-size: 0.92rem; }

.section {
  width: var(--wrap);
  margin: 0 auto;
  padding: clamp(62px, 8vw, 104px) 0;
}
.compact-section { padding-top: clamp(64px, 7vw, 92px); }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.5fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}
.section-head.tight { margin-bottom: 26px; }
.section-head p,
.showcase-copy p,
.cta-panel p,
.page-hero p,
.tech-card p {
  margin: 0;
  color: var(--ink-soft);
}
.kicker {
  margin: 0 0 10px !important;
  color: var(--blue-dark) !important;
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.benefit,
.tech-card,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(20, 35, 68, 0.06);
}
.benefit-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border-radius: 12px;
  color: var(--blue);
  background: var(--surface-blue);
}
.benefit-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}
.benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.showcase-band {
  border-block: 1px solid var(--line);
  background: #fff;
}
.showcase-simple {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 0.8fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}
.showcase-copy {
  display: grid;
  gap: 18px;
}
.showcase-copy h2 { font-size: clamp(2rem, 4vw, 3.45rem); }
.product-figure { margin: 0; }

.split-cta {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}
.cta-panel h2 { font-size: clamp(2rem, 3.8vw, 3.35rem); }
.cta-panel p { margin: 12px 0 22px; }
.primary-panel {
  background: var(--night);
  border-color: var(--night);
  color: #fff;
}
.primary-panel p { color: #c7d2e8; }
.primary-panel .kicker { color: #9bb8ff !important; }
.secondary-panel { background: #fff; }

.page-hero {
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
    #f4f8ff;
  background-size: 44px 44px, 44px 44px, auto;
  border-bottom: 1px solid var(--line);
}
.page-hero-inner {
  width: var(--wrap);
  margin: 0 auto;
  padding: clamp(60px, 10vw, 112px) 0 clamp(48px, 7vw, 80px);
}
.page-hero h1 { max-width: 820px; font-size: clamp(3rem, 7vw, 5.8rem); }
.page-hero p { max-width: 660px; margin-top: 18px; font-size: 1.1rem; }

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.tech-card.wide { grid-column: span 3; }
.tech-card h2 { font-size: clamp(1.35rem, 2vw, 1.8rem); margin-bottom: 10px; }
.detail-section { padding-top: 0; }
.permission-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.permission-table div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}
.permission-table div:last-child { border-bottom: 0; }
.permission-table strong { color: var(--blue-dark); }
.permission-table span { color: var(--ink-soft); }

.legal-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}
.legal-tabs {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 8px;
}
.legal-tabs button {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink-soft);
  cursor: pointer;
  text-align: left;
  padding: 0 14px;
  font-weight: 800;
}
.legal-tabs button[aria-selected="true"],
.legal-tabs button:hover {
  color: var(--blue-dark);
  background: var(--surface-blue);
  border-color: rgba(37, 99, 235, 0.35);
}
.legal-document {
  min-height: 540px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: clamp(22px, 4vw, 42px);
  box-shadow: 0 14px 34px rgba(20, 35, 68, 0.07);
}
.legal-document h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}
.legal-document h2 {
  margin: 28px 0 10px;
  font-size: clamp(1.28rem, 2.1vw, 1.7rem);
}
.legal-document p,
.legal-document li,
.legal-document td {
  color: var(--ink-soft);
}
.legal-document a { color: var(--blue-dark); font-weight: 750; }
.legal-document ul,
.legal-document ol {
  padding-left: 1.2rem;
}
.legal-document code {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f4f7fc;
  padding: 0.12em 0.35em;
}
.legal-document pre {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f4f7fc;
  padding: 14px;
}
.legal-document table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
}
.legal-document th,
.legal-document td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.legal-document th {
  color: var(--ink);
  background: var(--surface-blue);
}

.site-footer {
  background: #0e1422;
  color: #aeb8ca;
}
.footer-inner {
  width: var(--wrap);
  margin: 0 auto;
  padding: 34px 0;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-links a {
  color: #e5edff;
  text-decoration: none;
}
.footer-links a:hover { text-decoration: underline; text-underline-offset: 0.18em; }

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

@media (max-width: 920px) {
  .hero-inner,
  .section-head,
  .showcase-simple,
  .split-cta,
  .legal-shell {
    grid-template-columns: 1fr;
  }
  .hero-inner { min-height: auto; }
  .quick-bar,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .quick-item:nth-child(2) { border-right: 0; }
  .quick-item:nth-child(1),
  .quick-item:nth-child(2) { border-bottom: 1px solid var(--line); }
  .tech-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tech-card.wide { grid-column: span 2; }
  .legal-tabs {
    position: static;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .screenshot-grid,
  .workflow-grid,
  .feature-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .main-shot {
    transform: none;
  }
}

@media (max-width: 680px) {
  :root { --wrap: min(100% - 28px, 1120px); }
  .nav { min-height: 62px; gap: 12px; }
  .brand { gap: 9px; }
  .brand span:last-child { max-width: 104px; }
  .nav-links { gap: 6px; }
  .nav-links > a:not(.nav-cta) { display: none; }
  .nav-links > a,
  .nav-menu summary { padding: 0 10px; }
  .nav-menu-panel {
    right: -110px;
    min-width: 218px;
  }
  .hero-inner { padding: 28px 0 22px; gap: 24px; }
  .hero-old-inner {
    min-height: auto;
    padding: 54px 0 48px;
  }
  .hero-old h1 {
    font-size: clamp(2.35rem, 11vw, 3.15rem);
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .center-actions .btn {
    width: 100%;
  }
  h1 { font-size: clamp(2.55rem, 12vw, 3.35rem); }
  h2 { font-size: clamp(2rem, 9vw, 2.8rem); }
  .hero-actions .btn { width: 100%; }
  .real-shot-card,
  .product-figure { border-radius: 14px; }
  .real-shot-card { max-width: 260px; }
  .product-figure { max-width: 300px; }
  .quick-bar,
  .benefit-grid,
  .screenshot-grid,
  .workflow-grid,
  .feature-card-grid,
  .tech-grid,
  .legal-tabs {
    grid-template-columns: 1fr;
  }
  .screenshot-card {
    max-width: 340px;
    margin-inline: auto;
  }
  .feature-card {
    min-height: auto;
  }
  .quick-item,
  .quick-item:nth-child(n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .quick-item:last-child { border-bottom: 0; }
  .tech-card.wide { grid-column: auto; }
  .permission-table div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .footer-inner { display: grid; }
}
