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

:root {
  --graphite: #0D1117;
  --teal: #0EA5B7;
  --teal-hover: #07889A;
  --teal-light: #D9F3F6;
  --slate: #334155;
  --off-white: #F4F6F8;
  --cool-gray: #9AA3AF;
  --white: #FFFFFF;
  --deep: #080C12;
  --success: #16A34A;
  --warning: #F59E0B;
  --error: #DC2626;
  --line: #dce3ea;
  --shadow: 0 18px 50px rgba(13, 17, 23, .07);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: var(--off-white);
  color: var(--graphite);
  line-height: 1.55;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--graphite);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 0 0 12px 0;
  font-weight: 600;
}

.skip-link:focus { left: 0; }

.topnav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.topnav-inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 22px;
  min-height: 60px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  height: 34px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: wrap;
}

.nav a {
  white-space: nowrap;
  color: var(--slate);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 10px;
  transition: background .15s ease, color .15s ease;
}

.nav a:hover,
.nav a:focus {
  background: var(--off-white);
  color: var(--graphite);
}

.nav a.active {
  background: var(--teal-light);
  color: #075966;
}

.nav-toggle-cb { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 40px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--graphite);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* Logged-in app shell with sidebar */
.shell {
  display: flex;
  align-items: flex-start;
  min-height: 100vh;
}

.sidebar {
  flex: 0 0 232px;
  width: 232px;
  position: sticky;
  top: 0;
  align-self: stretch;
  height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 14px;
  background: var(--white);
  border-right: 1px solid var(--line);
}

.sidebar .brand {
  padding: 4px 8px 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 4px;
}

.sidenav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidenav a {
  color: var(--slate);
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  padding: 10px 12px;
  border-radius: 10px;
  transition: background .15s ease, color .15s ease;
}

.sidenav a:hover,
.sidenav a:focus {
  background: var(--off-white);
  color: var(--graphite);
}

.sidenav a.active {
  background: var(--teal-light);
  color: #075966;
}

.shell-main {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.appbar {
  position: sticky;
  top: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  padding: 9px 22px;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.appbar .nav-toggle { margin-left: 0; }
.appbar .userchip { margin-left: auto; }
.appbar .brand-mobile { display: none; }
.shell-backdrop { display: none; }

/* Beta banner + feedback modal */
.fb-toggle-cb { display: none; }

.beta-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 8px 18px;
  background: linear-gradient(90deg, var(--graphite), #143038);
  color: #fff;
  font-size: 13.5px;
}

.beta-pill {
  font-family: "Oxanium", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: .14em;
  font-size: 11px;
  background: var(--teal);
  color: #042027;
  padding: 2px 9px;
  border-radius: 999px;
}

.beta-text { opacity: .92; }

.beta-link {
  margin-left: auto;
  cursor: pointer;
  font-weight: 700;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.beta-link:hover,
.beta-link:focus { color: var(--teal-light); }

.fb-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.fb-toggle-cb:checked ~ .fb-modal { display: flex; }

.fb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 17, 23, .55);
  cursor: pointer;
}

.fb-dialog {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 22px 22px 24px;
}

.fb-dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.fb-dialog-head h2 {
  margin: 0;
  font-family: "Sora", Arial, sans-serif;
  font-size: 22px;
  letter-spacing: -.02em;
}

.fb-close {
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  color: var(--slate);
  padding: 0 6px;
  border-radius: 8px;
}

.fb-close:hover { background: var(--off-white); color: var(--graphite); }

.fb-seg {
  border: 0;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fb-seg legend {
  font-weight: 700;
  font-size: 13px;
  color: var(--slate);
  margin-bottom: 8px;
  width: 100%;
  padding: 0;
}

.fb-opt {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}

.fb-opt:hover { background: var(--off-white); }
.fb-opt input { accent-color: var(--teal); margin: 0; }

.fb-field {
  display: block;
  margin-top: 18px;
  font-weight: 700;
  font-size: 13px;
  color: var(--slate);
}

.fb-field textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  font-weight: 400;
}

.fb-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

/* Feedback inbox */
.fb-item-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.fb-tag,
.fb-status {
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}

.fb-tag-bug { background: #fdecec; color: #b42318; }
.fb-tag-idea { background: var(--teal-light); color: #075966; }
.fb-status-new { background: #fef3c7; color: #92400e; }
.fb-status-reviewed { background: #e0e7ff; color: #3730a3; }
.fb-status-resolved { background: #dcfce7; color: #166534; }

.fb-message { margin: 0 0 8px; white-space: pre-wrap; }
.fb-meta { font-size: 12.5px; margin: 0 0 12px; }

/* Impersonation banner */
.imp-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 8px 18px;
  background: #b45309;
  color: #fff;
  font-size: 13.5px;
}

.imp-banner a {
  margin-left: auto;
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Feature toggle list + setup wizard */
.toggle-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 6px 0 4px;
}

.toggle-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
}

.toggle-row:hover { background: var(--off-white); }
.toggle-row input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--teal); }
.toggle-text { display: flex; flex-direction: column; gap: 2px; }
.toggle-text strong { font-size: 15px; }
.toggle-text small { color: var(--slate); font-size: 13px; }

.setup-progress {
  color: var(--teal);
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 6px;
}

.setup-skip { margin-top: 14px; }

.linklike {
  background: none;
  border: 0;
  box-shadow: none;
  color: var(--slate);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 4px 0;
  font-weight: 600;
  cursor: pointer;
}

.linklike:hover { color: var(--graphite); background: none; }

.main {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px 22px 56px;
  min-width: 0;
  overflow-x: clip;
}

.shell-main { overflow-x: clip; }

.page-head {
  margin-bottom: 22px;
}

.page-head h1 {
  margin: 0;
  font-family: "Sora", Arial, sans-serif;
  font-size: clamp(24px, 3.5vw, 34px);
  letter-spacing: -.03em;
  line-height: 1.1;
}

.page-head p,
.muted {
  color: var(--slate);
}

.page-head p {
  margin: 4px 0 0;
  font-size: 15px;
}

.userchip {
  flex: 0 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 7px 12px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.15;
  white-space: nowrap;
}

.userchip small {
  display: block;
  color: var(--cool-gray);
  text-transform: capitalize;
  font-size: 12px;
}

.hero,
.card,
.metric {
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(22px, 4vw, 44px);
  box-shadow: var(--shadow);
}

.marketing-hero {
  min-height: 560px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 85% 18%, rgba(14, 165, 183, .22), transparent 28%),
    linear-gradient(135deg, var(--white) 0%, #fbfdfe 52%, var(--teal-light) 100%);
}

.hero h2,
.card h2,
.final-cta h2 {
  font-family: "Sora", Arial, sans-serif;
  letter-spacing: -.045em;
  line-height: 1.08;
}

.hero h2 {
  font-size: clamp(42px, 8vw, 82px);
  max-width: 880px;
  margin: 10px 0 18px;
}

.hero p {
  max-width: 760px;
  font-size: clamp(17px, 2.2vw, 22px);
}

.hero-price {
  font-family: "Oxanium", Arial, sans-serif;
  font-size: clamp(28px, 5vw, 48px) !important;
  color: var(--graphite);
  margin: 22px 0 4px;
}

.eyebrow {
  color: var(--teal);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: var(--white);
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
  font-family: "Inter", Arial, sans-serif;
  box-shadow: 0 12px 28px rgba(14, 165, 183, .24);
}

.button:hover,
button:hover {
  background: var(--teal-hover);
}

.button.secondary {
  background: var(--graphite);
  box-shadow: none;
}

.button-large {
  min-height: 50px;
  padding-inline: 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.danger { background: var(--error); }

.marketing-section,
.marketing-grid,
.grid,
.included-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

.marketing-section,
.marketing-grid {
  margin-top: 18px;
}

.grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.split-section {
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, .8fr);
}

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

.copy-card p {
  color: var(--slate);
  font-size: 16px;
}

.featured-price {
  background: var(--deep);
  color: var(--white);
}

.featured-price h2,
.price-card h2 {
  font-family: "Oxanium", Arial, sans-serif;
  font-size: clamp(54px, 8vw, 86px);
  margin: 0;
  letter-spacing: -.04em;
}

.featured-price p {
  color: #dbe8ec;
}

.included-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  margin: 22px 0;
}

.included-grid span,
.pill-list span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 16px;
  color: var(--slate);
  font-weight: 600;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.callout {
  background: var(--teal-light);
  border-radius: 18px;
  color: #075966 !important;
  font-weight: 600;
  padding: 14px;
}

.centered-card,
.final-cta {
  text-align: center;
}

.centered-card {
  margin-top: 18px;
}

.centered-card p,
.final-cta p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.faq-section {
  margin-top: 18px;
}

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

.faq-item {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
}

.faq-item h3 {
  margin: 0 0 6px;
  font-family: "Sora", Arial, sans-serif;
  font-size: 17px;
  letter-spacing: -.01em;
  color: var(--graphite);
}

.faq-item p {
  color: var(--slate);
  margin: 0;
  font-size: 15px;
}

/* Features page */
.features-hero {
  text-align: center;
}

.features-hero h2 {
  max-width: 760px;
  margin: 8px auto 12px;
}

.features-hero p {
  max-width: 640px;
  margin: 0 auto 18px;
  color: var(--slate);
  font-size: 17px;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.feature-card h3 {
  margin: 0 0 12px;
  font-family: "Sora", Arial, sans-serif;
  font-size: 19px;
  letter-spacing: -.02em;
}

.feature-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.feature-card li {
  position: relative;
  padding-left: 26px;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.45;
}

.feature-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--teal-light);
  box-shadow: inset 0 0 0 2px var(--teal);
}

/* Site footer */
.site-footer {
  margin-top: 44px;
  border-top: 1px solid var(--line);
  background: var(--graphite);
  color: rgba(255, 255, 255, .78);
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 30px;
  padding: 42px 22px 30px;
}

.footer-brand img {
  height: 30px;
  width: auto;
  display: block;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255, 255, 255, .7);
  max-width: 340px;
  font-size: 14px;
  margin: 0;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--cool-gray);
  margin: 0 0 4px;
}

.footer-col a {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.footer-col a:hover { color: var(--teal-light); }

.footer-company {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-byline {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--cool-gray);
}

.footer-blackridge {
  height: 46px;
  width: auto;
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 16px 22px;
}

.footer-bottom p {
  color: var(--cool-gray);
  font-size: 13px;
  margin: 0 auto;
  max-width: 1240px;
  text-align: center;
}

.site-footer.minimal {
  background: transparent;
  color: inherit;
  border-top-color: var(--line);
}

.site-footer.minimal .footer-bottom { border-top: 0; }

@media (max-width: 760px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.final-cta {
  margin-top: 18px;
  background: var(--graphite);
  color: var(--white);
  border-radius: 32px;
  padding: clamp(28px, 5vw, 58px);
}

.final-cta h2 {
  font-size: clamp(30px, 5vw, 54px);
}

.final-cta .muted {
  color: var(--cool-gray);
}

.metric strong {
  display: block;
  font-family: "Oxanium", Arial, sans-serif;
  font-size: 34px;
  color: var(--graphite);
}

.metric span {
  color: var(--slate);
}

.notice {
  background: var(--teal-light);
  border: 1px solid rgba(14, 165, 183, .35);
  color: #075966;
  border-radius: 14px;
  padding: 12px 16px;
  margin-bottom: 18px;
}

form { display: grid; gap: 14px; }
label { display: grid; gap: 6px; font-weight: 600; }

input,
select,
textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 13px;
  font: inherit;
  background: var(--white);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(14, 165, 183, .3);
  border-color: var(--teal);
}

textarea { min-height: 90px; }

.inline-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  align-items: end;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.table-wrap { width: 100%; }
table { width: 100%; border-collapse: collapse; table-layout: fixed; }
th, td { padding: 10px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; overflow-wrap: anywhere; word-break: break-word; }
th { text-transform: capitalize; color: var(--slate); font-weight: 600; }

@media (max-width: 760px) {
  .table-wrap table,
  .table-wrap tbody,
  .table-wrap tr,
  .table-wrap td { display: block; width: 100%; }
  .table-wrap thead { display: none; }
  .table-wrap tr {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 4px 6px;
    margin-bottom: 12px;
  }
  .table-wrap td {
    border: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 8px 10px;
    text-align: right;
  }
  .table-wrap td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--slate);
    text-align: left;
    flex: 0 0 38%;
  }
  .table-wrap td:empty { display: none; }
  .table-wrap td form { width: auto; margin: 0; }
}

.status {
  padding: 12px;
  border-radius: 12px;
  background: #eef2f6;
}

.status.good {
  background: #dcfce7;
  color: #166534;
}

.check {
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 400;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.feature-list p {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  margin: 0;
}

.pricing {
  display: grid;
  place-items: start;
}

.price-card {
  max-width: 560px;
}

.price {
  font-family: "Inter", Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--slate);
}

.kiosk-card {
  max-width: 460px;
  margin: 24px auto;
  text-align: center;
}

.kiosk-card form {
  text-align: left;
  margin-top: 16px;
}

.kiosk-card .button-large {
  width: 100%;
  margin-top: 8px;
}

.inline-confirm {
  display: inline;
  margin: 0;
}

.inline-confirm button {
  padding: 6px 12px;
  font-size: 13px;
}

@media (max-width: 980px) {
  .split-section,
  .marketing-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    overflow: visible;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 10px 14px 16px;
  }
  .nav-toggle-cb:checked ~ .nav { display: flex; }
  .nav a {
    font-size: 15px;
    padding: 12px;
    border-radius: 12px;
  }
  .nav-toggle-cb:checked ~ .nav-toggle span:nth-child(1),
  .nav-toggle-cb:checked ~ .shell .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle-cb:checked ~ .nav-toggle span:nth-child(2),
  .nav-toggle-cb:checked ~ .shell .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle-cb:checked ~ .nav-toggle span:nth-child(3),
  .nav-toggle-cb:checked ~ .shell .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .userchip { display: none; }

  /* App shell: off-canvas sidebar on mobile */
  .shell { display: block; }
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 270px;
    max-width: 84vw;
    z-index: 200;
    transform: translateX(-100%);
    transition: transform .25s ease;
    box-shadow: var(--shadow);
  }
  .nav-toggle-cb:checked ~ .shell .sidebar { transform: none; }
  .shell-backdrop {
    position: fixed;
    inset: 0;
    z-index: 150;
    background: rgba(13, 17, 23, .45);
  }
  .nav-toggle-cb:checked ~ .shell .shell-backdrop { display: block; }
  .appbar .brand-mobile { display: flex; }
  .appbar .brand-mobile img { height: 30px; width: auto; }
}

@media (max-width: 620px) {
  .main { padding: 20px 16px 44px; }
  .topnav-inner { padding: 8px 16px; }
  .marketing-hero { min-height: auto; }
  .cta-row .button { width: 100%; }
  .hero,
  .card,
  .metric,
  .final-cta {
    border-radius: 22px;
  }
  .included-grid span,
  .pill-list span {
    border-radius: 16px;
  }
}
