:root {
  --ink: #fff8ec;
  --muted: rgba(255, 248, 236, 0.72);
  --panel: rgba(35, 27, 29, 0.74);
  --panel-strong: rgba(30, 22, 24, 0.9);
  --line: rgba(255, 248, 236, 0.16);
  --accent: #f0c2a0;
  --accent-2: #b9d2be;
  --deep: #0b1113;
  color: var(--ink);
  background: var(--deep);
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(900px 680px at 10% 0%, rgba(240, 194, 160, 0.22), transparent 65%),
    radial-gradient(780px 620px at 90% 5%, rgba(185, 210, 190, 0.14), transparent 68%),
    linear-gradient(145deg, #251716, #101617 50%, #0c1117);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.site-header,
footer {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 22px;
}

.brand span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #211514;
  background: linear-gradient(135deg, #fff3df, #d7a58a);
  font-weight: 900;
}

nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

nav a,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

nav a {
  color: var(--muted);
}

nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  width: min(1120px, calc(100% - 36px));
  margin: 26px auto 0;
  min-height: calc(100vh - 130px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 44px;
  padding-bottom: 64px;
}

.hero > *,
.page > *,
.feature-grid > *,
.support-grid > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 900;
}

h1,
h2,
p {
  margin-top: 0;
}

h1,
.quiet-section h2 {
  margin-bottom: 24px;
  font-family: "New York", Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.lede,
.quiet-section p,
.support-card p,
.legal p,
.support-grid p,
.feature-grid p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
  overflow-wrap: anywhere;
}

.lede {
  max-width: 650px;
  font-size: 22px;
}

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

.primary-button {
  color: #211514;
  background: linear-gradient(135deg, #fff3df, #dba383);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.secondary-button {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.phone-card,
.support-card,
.feature-grid article,
.support-grid article,
.quiet-section,
.legal section {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(24px);
}

.phone-card {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  border-radius: 52px;
  padding: 28px;
}

.phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.phone-top span {
  width: 110px;
  height: 32px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.48);
}

.phone-top i {
  width: 62px;
  height: 26px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.app-card,
.theme-card {
  border-radius: 34px;
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(19, 14, 15, 0.72);
}

.app-card small,
.theme-card small {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
}

.app-card h2 {
  margin-bottom: 8px;
  font-family: "New York", Georgia, "Times New Roman", serif;
  font-size: 48px;
}

.mini-actions,
.trust-row,
.swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mini-actions {
  margin: 28px 0 18px;
}

.mini-actions span,
.trust-row em {
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line);
  font-style: normal;
  font-weight: 800;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.mini-actions span:first-child {
  color: #211514;
  background: linear-gradient(135deg, #fff3df, #dba383);
}

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

.theme-card strong {
  display: block;
  margin-bottom: 18px;
  font-family: "New York", Georgia, "Times New Roman", serif;
  font-size: 38px;
}

.swatches span {
  width: 56px;
  height: 56px;
  border-radius: 18px;
}

.swatches span:nth-child(1) {
  background: #f4efe2;
}

.swatches span:nth-child(2) {
  background: #9eb6c8;
}

.swatches span:nth-child(3) {
  background: #93aa8d;
}

.swatches span:nth-child(4) {
  background: #b78064;
}

.feature-grid,
.support-grid {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto 96px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-grid article,
.support-grid article {
  border-radius: 28px;
  padding: 26px;
}

.feature-grid span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--accent);
  font-weight: 900;
}

.feature-grid h2,
.support-grid h2,
.support-card h2,
.legal h2 {
  margin-bottom: 12px;
  font-size: 24px;
}

.quiet-section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto 96px;
  border-radius: 36px;
  padding: clamp(34px, 6vw, 72px);
}

.quiet-section h2 {
  max-width: 800px;
  font-size: clamp(40px, 5vw, 70px);
}

.quiet-section p {
  max-width: 720px;
}

.page {
  width: min(980px, calc(100% - 36px));
  margin: 60px auto 96px;
}

.page h1 {
  font-size: clamp(44px, 6vw, 72px);
}

.support-card {
  border-radius: 32px;
  padding: 34px;
  margin: 34px 0;
}

.email-link {
  color: #211514;
  display: inline-flex;
  padding: 14px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff3df, #dba383);
  font-weight: 900;
  text-decoration: none;
}

.note {
  font-size: 16px;
}

.support-grid {
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 0;
}

.legal section {
  margin-top: 16px;
  border-radius: 24px;
  padding: 26px;
}

footer {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer div {
  display: flex;
  gap: 16px;
}

@media (max-width: 820px) {
  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .hero,
  .feature-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .phone-card {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .site-header,
  footer,
  .hero,
  .feature-grid,
  .quiet-section,
  .page {
    width: calc(100% - 44px);
  }

  h1,
  .quiet-section h2 {
    font-size: 34px;
  }

  .hero-copy,
  .lede {
    max-width: 286px;
    width: 100%;
  }

  .lede,
  .quiet-section p,
  .support-card p,
  .legal p,
  .support-grid p,
  .feature-grid p {
    font-size: 15px;
  }

  .phone-card {
    padding: 18px;
    border-radius: 34px;
  }

  .app-card,
  .theme-card {
    padding: 22px;
    border-radius: 26px;
  }

  .app-card h2 {
    font-size: 34px;
  }

  .trust-row em,
  .mini-actions span {
    font-size: 14px;
    padding: 10px 12px;
  }

  .support-card,
  .legal section,
  .feature-grid article,
  .support-grid article {
    padding: 22px;
  }
}
