:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #526173;
  --paper: #06111d;
  --snow: #ffffff;
  --line: #d9e2ec;
  --blue: #145c9e;
  --red: #d33f49;
  --gold: #f5b942;
  --navy: #07111f;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}
a { color: inherit; }
.nav, .section, .footer, .subhero {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  color: white;
  background: rgba(3, 9, 16, 0.88);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  text-decoration: none;
}
.brand img { width: 224px; height: auto; }
.nav-links, .language-switcher {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
  font-size: 14px;
}
.nav a { text-decoration: none; }
.platform-page .nav {
  grid-template-columns: auto 1fr;
  padding: 12px 0;
}
.platform-page .language-switcher {
  grid-column: 1 / -1;
  margin-top: -4px;
}
.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover, .nav-links a:focus-visible, .nav-links a.current {
  border-bottom-color: #69bfff;
}
.language-switcher a {
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: #cbd7e5;
}
.language-switcher a.active {
  border-color: var(--blue);
  color: var(--blue);
  font-weight: 800;
}
.hero {
  position: relative;
  min-height: calc(84svh - 76px);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 74px max(22px, calc((100vw - 1120px) / 2)) 86px;
  background:
    linear-gradient(90deg, rgba(3, 9, 16, 0.95), rgba(3, 9, 16, 0.76) 45%, rgba(3, 9, 16, 0.10)),
    url("/assets/finish-shack-hero-clean.png") center / cover;
  color: white;
}
.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(10,92,255,0.16), rgba(6,17,29,0.28));
  pointer-events: none;
}
.hero-copy { position: relative; z-index: 1; max-width: 680px; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.94;
  letter-spacing: 0;
}
.lede {
  max-width: 660px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.48;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid white;
  background: white;
  color: var(--navy);
  font-weight: 850;
  text-decoration: none;
}
.button.secondary {
  background: transparent;
  color: white;
}
.app-store-note {
  max-width: 520px;
  margin-top: 18px;
  color: #cad7e4;
  font-size: 14px;
}
.app-store-note strong { color: white; }
.text-link {
  color: #8fd4ff;
  font-weight: 800;
  text-underline-offset: 3px;
}
.section {
  padding: 68px 0;
  color: white;
}
.section h2, .subhero h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}
.section p {
  color: #b7c5d6;
  font-size: 17px;
  line-height: 1.6;
}
.split {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 36px;
  align-items: start;
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.cards article, .price-card, .help-list article {
  border: 1px solid rgba(176, 211, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.065);
  padding: 20px;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border-color: rgba(20, 92, 158, 0.64);
  box-shadow: 0 12px 34px rgba(20, 92, 158, 0.12);
}
.price-badge {
  align-self: flex-start;
  margin: -4px 0 12px;
  border-radius: 999px;
  padding: 4px 9px;
  color: white;
  background: var(--blue);
  font-size: 12px;
  font-weight: 850;
}
.cards h3, .price-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}
.cards p, .price-card p {
  margin: 0;
}
.announcements {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.announcement-card h3 { margin: 0 0 8px; }
.announcement-date {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-weight: 800;
  font-size: 13px;
}
.announcement-card a {
  display: inline-block;
  margin-top: 12px;
  color: var(--blue);
  font-weight: 800;
}
.mailing-list {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 32px;
  align-items: center;
  padding-left: max(20px, calc((100vw - 1120px) / 2));
  padding-right: max(20px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid rgba(176, 211, 255, 0.22);
  background: #081523;
}
.mailing-list .eyebrow { color: #8fd4ff; }
.mailing-list h2 { max-width: 760px; }
.mailing-form {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(176, 211, 255, 0.28);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.07);
}
.mailing-form label {
  display: grid;
  gap: 7px;
  color: white;
  font-weight: 800;
}
.mailing-form input[type="email"] {
  min-height: 46px;
  width: 100%;
  border: 1px solid rgba(176, 211, 255, 0.34);
  border-radius: 8px;
  padding: 0 13px;
  color: var(--ink);
  background: white;
}
.mailing-form input[type="email"]:focus {
  outline: 3px solid rgba(32, 199, 255, 0.28);
  border-color: #20c7ff;
}
.mailing-form .consent-row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: #d7e5f5;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}
.mailing-form .consent-row input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
}
.mailing-form .bot-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.mailing-form .button {
  width: 100%;
  border-color: var(--blue);
  color: white;
  background: var(--blue);
}
.mailing-message {
  min-height: 22px;
  margin: 0;
  color: #b6f2c4 !important;
  font-size: 14px !important;
}
.mailing-message.error {
  color: #ffd1d1 !important;
}
.pricing { padding-bottom: 82px; }
.pricing {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - 1120px) / 2));
  padding-right: max(20px, calc((100vw - 1120px) / 2));
  color: var(--ink);
  background: #f7fafc;
}
.pricing p { color: var(--muted); }
.pricing-grid { margin-top: 24px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.price-card strong {
  display: block;
  margin: 8px 0 14px;
  color: var(--blue);
  font-size: 26px;
}
.price-button {
  width: 100%;
  margin-top: auto;
  border-color: var(--blue);
  color: white;
  background: var(--blue);
}
.account-access-note {
  margin: 26px 0 8px;
  border-left: 4px solid var(--blue);
  padding: 14px 18px;
  color: var(--ink) !important;
  background: rgba(20, 92, 158, 0.07);
}
.account-access-note strong { display: block; margin-bottom: 4px; }
.fine-print { font-size: 14px !important; }
.subhero {
  padding: 64px 0 34px;
  color: white;
}
.subhero h1 {
  max-width: 900px;
}
.subhero .lede {
  color: var(--muted);
}
.platform-hero {
  width: min(1120px, calc(100% - 40px));
  min-height: 650px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.72fr);
  gap: 64px;
  align-items: center;
  padding: 70px 0 82px;
  color: white;
}
.platform-hero-copy,
.platform-device {
  min-width: 0;
}
.platform-hero h1 {
  max-width: 760px;
  font-size: clamp(46px, 6vw, 82px);
  overflow-wrap: anywhere;
}
.platform-hero .lede { color: #c4d3e5; }
.status-pill {
  display: inline-flex;
  margin: 0 0 20px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 8px 12px;
  color: white;
  background: rgba(255,255,255,0.08);
  font-size: 13px;
  font-weight: 850;
}
.status-android, .status-web {
  border-color: rgba(116, 229, 148, 0.46);
  color: #b6f2c4;
  background: rgba(50, 190, 91, 0.12);
}
.platform-device {
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(176, 211, 255, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 70% 20%, rgba(36, 124, 255, 0.34), transparent 40%),
    rgba(255,255,255,0.06);
  box-shadow: 0 28px 80px rgba(0,0,0,0.34);
}
.platform-device img {
  display: block;
  width: min(82%, 360px);
  max-height: 540px;
  object-fit: contain;
  object-position: center;
}
.platform-device img[src*="web-home"] {
  width: 94%;
  max-width: none;
  border-radius: 10px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.28);
}
.button-disabled {
  border-color: rgba(255,255,255,0.34);
  color: #c7d3df;
  background: rgba(255,255,255,0.08);
  cursor: default;
}
.platform-intro {
  border-top: 1px solid rgba(176, 211, 255, 0.18);
}
.platform-intro h2, .screenshot-section h2, .compare-section h2 { max-width: 820px; }
.platform-summary { max-width: 820px; }
.platform-benefits { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 30px; }
.screenshot-section {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - 1120px) / 2));
  padding-right: max(20px, calc((100vw - 1120px) / 2));
  color: var(--ink);
  background: #f7fafc;
}
.screenshot-section .eyebrow { color: var(--blue); }
.screenshot-section > p { max-width: 780px; color: var(--muted); }
.home-screenshot-section {
  border-top: 1px solid #d7e1eb;
  border-bottom: 1px solid #d7e1eb;
}
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}
.screenshot-grid figure {
  min-width: 0;
  margin: 0;
  border: 1px solid #d7e1eb;
  border-radius: 18px;
  padding: 18px;
  background: white;
  box-shadow: 0 16px 40px rgba(29, 54, 82, 0.09);
}
.screenshot-grid img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: contain;
  border-radius: 10px;
  background: #edf2f7;
}
.screenshot-grid figcaption {
  margin-top: 14px;
  color: #415267;
  font-size: 14px;
  font-weight: 750;
}
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.platform-card {
  border: 1px solid rgba(176, 211, 255, 0.22);
  border-radius: 12px;
  padding: 22px;
  background: rgba(255,255,255,0.055);
}
.platform-card.selected {
  border-color: rgba(105,191,255,0.72);
  background: rgba(20,92,158,0.18);
}
.platform-card .platform-name {
  margin: 0;
  color: white;
  font-size: 22px;
  font-weight: 850;
}
.platform-card a { color: #8fd4ff; font-weight: 850; }
.help-list {
  display: grid;
  gap: 16px;
  padding-top: 18px;
}
.help-list h2 {
  font-size: 24px;
}
.help-list p {
  margin-bottom: 0;
}
.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
@media (max-width: 860px) {
  .nav { grid-template-columns: 1fr; align-items: start; padding: 16px 0; }
  .platform-page .nav { grid-template-columns: 1fr; }
  .nav-links, .language-switcher { justify-content: flex-start; }
  .platform-page .language-switcher { grid-column: auto; margin-top: 0; }
  .platform-page .brand img { width: 188px; }
  .platform-page .nav-links, .platform-page .language-switcher {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex-wrap: wrap;
    overflow-x: visible;
    overscroll-behavior-inline: contain;
    padding-bottom: 0;
  }
  .platform-page .nav-links a, .platform-page .language-switcher a { flex: 0 0 auto; }
  .hero { min-height: auto; padding-top: 34px; }
  .split, .grid, .pricing-grid, .mailing-list, .platform-hero, .platform-benefits, .platform-grid { grid-template-columns: 1fr; }
  .platform-hero { min-height: auto; gap: 34px; padding: 42px 0 54px; }
  .platform-hero h1 {
    font-size: clamp(38px, 11vw, 46px);
    line-height: 1.02;
  }
  .platform-device { min-height: 420px; }
  .screenshot-grid { grid-template-columns: repeat(3, minmax(240px, 1fr)); overflow-x: auto; padding-bottom: 10px; }
  .screenshot-grid img { height: 440px; }
  .footer { flex-direction: column; }
}
