:root {
  color-scheme: dark light;
  --black: #000;
  --night: #0b0b0d;
  --ink: #1d1d1f;
  --paper: #f5f5f7;
  --paper-2: #fbfbfd;
  --white: #ffffff;
  --muted: #6e6e73;
  --muted-2: #86868b;
  --line-dark: rgba(255, 255, 255, 0.1);
  --line-light: rgba(0, 0, 0, 0.1);
  --blue: #0071e3;
  --blue-hover: #0077ed;
  --mint: #b9f17d;
  --coral: #ff6d52;
  --peach: #ffd5b5;
  --halo-1: rgba(80, 130, 255, 0.5);
  --halo-2: rgba(255, 113, 215, 0.35);
  --halo-3: rgba(91, 247, 200, 0.32);
  --shadow-lg: 0 60px 120px -30px rgba(0, 0, 0, 0.65);
  --shadow-md: 0 28px 80px -20px rgba(20, 17, 25, 0.22);
  --radius-card: 28px;
  --radius-tile: 22px;
  --radius-pill: 980px;
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Inter", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--ink);
  letter-spacing: -0.011em;
  margin: 0;
}

body.home-page {
  background: var(--black);
  color: var(--white);
}

body.legal-page,
body.support-page {
  background: var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
  transition: color 0.2s var(--ease-out), opacity 0.2s var(--ease-out);
}

img {
  display: block;
  max-width: 100%;
}

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

/* ------- Layout primitives ------- */

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* ------- Promo banner ------- */

.promo-banner {
  background: linear-gradient(90deg, #0a1a3f 0%, #4d2a8a 50%, #b13c6a 100%);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-align: center;
}

.promo-banner a {
  align-items: center;
  color: inherit;
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 11px 20px;
  text-decoration: none;
}

.promo-banner strong {
  font-weight: 600;
}

.promo-banner .arrow {
  display: inline-block;
  transition: transform 0.2s var(--ease-out);
}

.promo-banner a:hover .arrow {
  transform: translateX(3px);
}

/* ------- Header ------- */

.site-header {
  align-items: center;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(0, 0, 0, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  height: 52px;
  justify-content: space-between;
  left: 0;
  padding: 0 max(22px, calc((100vw - 1180px) / 2));
  position: sticky;
  right: 0;
  top: 0;
  z-index: 50;
}

body.legal-page .site-header,
body.support-page .site-header {
  background: rgba(245, 245, 247, 0.82);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--ink);
}

.brand {
  align-items: center;
  display: flex;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.brand img {
  border-radius: 8px;
  height: 26px;
  width: 26px;
}

nav[aria-label="Main"] {
  align-items: center;
  display: flex;
  gap: clamp(18px, 2.4vw, 30px);
}

nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  text-decoration: none;
}

body.legal-page nav a,
body.support-page nav a {
  color: rgba(29, 29, 31, 0.82);
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--white);
}

body.legal-page nav a:hover,
body.legal-page nav a[aria-current="page"],
body.support-page nav a:hover,
body.support-page nav a[aria-current="page"] {
  color: var(--ink);
  opacity: 1;
}

/* ------- Typography ------- */

.eyebrow {
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  text-transform: none;
}

.product-band .eyebrow,
.sharing-band .eyebrow,
.trust-band .eyebrow,
.support-page .eyebrow,
.legal-page .eyebrow {
  color: var(--blue);
}

h1,
h2,
h3 {
  font-weight: 600;
  letter-spacing: -0.022em;
}

h1 {
  font-size: clamp(2.6rem, 6.8vw, 5.6rem);
  line-height: 1.04;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(2rem, 4.6vw, 4rem);
  letter-spacing: -0.028em;
  line-height: 1.05;
  margin-bottom: 18px;
}

h3 {
  font-size: clamp(1.18rem, 1.6vw, 1.45rem);
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 8px;
}

p {
  line-height: 1.5;
}

.headline-accent {
  background: linear-gradient(120deg, #a8b6ff 0%, #ff9ad8 50%, #ffd28c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ------- Buttons ------- */

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  display: inline-flex;
  font-size: 0.98rem;
  font-weight: 400;
  justify-content: center;
  letter-spacing: -0.005em;
  min-height: 44px;
  padding: 0 22px;
  text-decoration: none;
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out), transform 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--blue);
  color: var(--white);
}

.button.primary:hover {
  background: var(--blue-hover);
}

.button.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.button.app-store {
  background: var(--black);
  border-radius: 14px;
  color: var(--white);
  gap: 12px;
  min-height: 56px;
  padding: 0 26px 0 22px;
  text-align: left;
}

.button.app-store:hover {
  background: #1d1d1f;
}

.button.app-store .apple-icon {
  flex-shrink: 0;
  height: 28px;
  width: 24px;
}

.button.app-store .app-store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.button.app-store .app-store-text small {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.005em;
  opacity: 0.92;
}

.button.app-store .app-store-text strong {
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: -0.015em;
}

body.legal-page .button.app-store,
body.support-page .button.app-store {
  background: var(--black);
  color: var(--white);
}

body.legal-page .button.secondary,
body.support-page .button.secondary {
  border-color: rgba(0, 0, 0, 0.25);
  color: var(--ink);
}

body.legal-page .button.secondary:hover,
body.support-page .button.secondary:hover {
  background: rgba(0, 0, 0, 0.06);
}

.text-link {
  color: var(--blue);
  font-weight: 400;
  text-decoration: none;
}

.text-link::after {
  content: " ›";
}

.text-link:hover {
  text-decoration: underline;
}

/* ============================================================ */
/* HERO                                                         */
/* ============================================================ */

.hero {
  background: radial-gradient(ellipse 80% 60% at 50% 12%, #1a1c2c 0%, var(--black) 60%);
  isolation: isolate;
  overflow: hidden;
  padding: clamp(70px, 9vw, 120px) 0 0;
  position: relative;
  text-align: center;
}

.hero::before {
  background:
    radial-gradient(circle at 22% 18%, var(--halo-2) 0%, transparent 38%),
    radial-gradient(circle at 78% 26%, var(--halo-1) 0%, transparent 42%),
    radial-gradient(circle at 50% 90%, var(--halo-3) 0%, transparent 45%);
  content: "";
  filter: blur(50px);
  inset: -20% -10% 0;
  opacity: 0.55;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.hero .section-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.hero .eyebrow {
  color: var(--mint);
}

.hero h1 {
  font-size: clamp(3rem, 8.5vw, 6.8rem);
  font-weight: 600;
  letter-spacing: -0.032em;
  line-height: 1.02;
  margin-bottom: 20px;
  max-width: 900px;
}

.hero-lede {
  color: rgba(245, 245, 247, 0.86);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.4;
  margin: 0 auto;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.hero-device {
  margin: clamp(50px, 7vw, 80px) auto 0;
  max-width: 980px;
  position: relative;
  width: 100%;
}

.hero-device::before {
  background: radial-gradient(ellipse at center, var(--halo-1) 0%, transparent 65%);
  content: "";
  filter: blur(50px);
  height: 80%;
  left: 10%;
  opacity: 0.7;
  position: absolute;
  top: 8%;
  width: 80%;
  z-index: -1;
}

.hero-screens {
  align-items: end;
  display: grid;
  gap: clamp(12px, 2vw, 28px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr) minmax(0, 0.9fr);
  position: relative;
}

.hero-screen {
  border-radius: clamp(22px, 2.6vw, 38px);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.hero-screen img {
  background: #0b0b0d;
  display: block;
  height: auto;
  width: 100%;
}

.hero-screen.left,
.hero-screen.right {
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
  margin-bottom: clamp(8px, 3vw, 32px);
  opacity: 0.92;
}

.hero-screen.center {
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6%);
  z-index: 2;
}

.hero-caption {
  align-items: center;
  color: rgba(245, 245, 247, 0.62);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.84rem;
  font-weight: 400;
  gap: 22px;
  justify-content: center;
  letter-spacing: -0.005em;
  margin: clamp(40px, 6vw, 64px) auto 0;
  padding-bottom: clamp(60px, 8vw, 100px);
}

.hero-caption span::before {
  content: "";
  background: rgba(245, 245, 247, 0.3);
  border-radius: 50%;
  display: inline-block;
  height: 4px;
  margin-right: 22px;
  vertical-align: middle;
  width: 4px;
}

.hero-caption span:first-child::before {
  display: none;
}

/* ============================================================ */
/* PRODUCT BAND — Bento grid                                    */
/* ============================================================ */

.product-band {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(70px, 9vw, 120px) 0;
}

.section-intro {
  margin: 0 auto clamp(42px, 6vw, 76px);
  max-width: 820px;
  text-align: center;
}

.section-intro p:last-child {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.45;
  margin: 0 auto;
  max-width: 680px;
}

.bento-grid {
  display: grid;
  gap: clamp(12px, 1.4vw, 20px);
  grid-template-columns: repeat(2, 1fr);
}

.bento-card {
  aspect-ratio: 1 / 1;
  background: var(--white);
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  padding: clamp(28px, 3vw, 44px) clamp(28px, 3vw, 44px) 0;
  position: relative;
  transition: transform 0.4s var(--ease-out);
}

.bento-card:hover {
  transform: translateY(-3px);
}

.bento-eyebrow {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin-bottom: 10px;
  text-transform: none;
}

.bento-card h3 {
  font-size: clamp(1.3rem, 1.9vw, 1.78rem);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.15;
  margin-bottom: 10px;
}

.bento-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
  margin-bottom: 0;
  max-width: 420px;
}

.bento-shot {
  align-items: flex-end;
  display: flex;
  flex: 1;
  justify-content: center;
  margin: clamp(24px, 3vw, 36px) 0 0;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.bento-shot img {
  border-radius: clamp(16px, 2vw, 26px) clamp(16px, 2vw, 26px) 0 0;
  box-shadow: 0 -20px 60px -20px rgba(20, 17, 25, 0.28);
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  width: 80%;
  max-width: 320px;
}

.bento-card.dark {
  background: var(--ink);
  color: var(--white);
}

.bento-card.dark p {
  color: rgba(255, 255, 255, 0.72);
}

.bento-card.dark .bento-eyebrow {
  color: var(--mint);
}

.bento-card.gradient {
  background: linear-gradient(135deg, #0a1a3f 0%, #4d2a8a 100%);
  color: var(--white);
}

.bento-card.gradient p {
  color: rgba(255, 255, 255, 0.78);
}

.bento-card.gradient .bento-eyebrow {
  color: var(--peach);
}

/* ============================================================ */
/* STYLES BAND                                                  */
/* ============================================================ */

.styles-band {
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding: clamp(74px, 9vw, 124px) 0;
  position: relative;
}

.styles-band::before {
  background: radial-gradient(ellipse at center top, rgba(120, 80, 240, 0.18) 0%, transparent 60%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.styles-band .section-shell {
  position: relative;
}

.styles-band .eyebrow {
  color: var(--mint);
}

.styles-band .section-intro p:last-child {
  color: rgba(245, 245, 247, 0.7);
}

.style-grid {
  display: grid;
  gap: clamp(10px, 1.2vw, 16px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.style-grid figure {
  border-radius: var(--radius-tile);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.style-grid img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
  width: 100%;
}

.style-grid figcaption {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(11, 11, 13, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  bottom: 14px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  left: 14px;
  letter-spacing: -0.005em;
  padding: 7px 14px;
  position: absolute;
}

.style-grid figure:hover img {
  transform: scale(1.06);
}

/* ============================================================ */
/* SHARING BAND                                                 */
/* ============================================================ */

.sharing-band {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(74px, 9vw, 128px) 0;
}

.sharing-layout {
  align-items: center;
  display: grid;
  gap: clamp(30px, 6vw, 88px);
  grid-template-columns: minmax(290px, 0.86fr) minmax(0, 1fr);
}

.sharing-screen {
  align-items: center;
  background: linear-gradient(160deg, #e8e8ed 0%, #f5f5f7 100%);
  border-radius: var(--radius-card);
  display: flex;
  justify-content: center;
  max-width: 540px;
  padding: clamp(28px, 4vw, 56px);
  position: relative;
}

.sharing-screen img {
  border-radius: clamp(20px, 2.4vw, 34px);
  box-shadow: var(--shadow-md);
  width: 100%;
}

.sharing-copy h2 {
  max-width: 620px;
}

.feature-list {
  display: grid;
  gap: 0;
  margin-top: clamp(28px, 3.6vw, 40px);
}

.feature-list article {
  border-top: 1px solid var(--line-light);
  padding: 20px 0;
}

.feature-list article:last-child {
  border-bottom: 1px solid var(--line-light);
}

.feature-list h3 {
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  margin-bottom: 6px;
}

.feature-list p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
  margin-bottom: 0;
  max-width: 540px;
}

/* ============================================================ */
/* TRUST BAND                                                   */
/* ============================================================ */

.trust-band {
  background: var(--white);
  color: var(--ink);
  padding: clamp(72px, 9vw, 120px) 0;
}

body.home-page .trust-band {
  background: var(--paper);
}

.trust-grid {
  align-items: start;
  display: grid;
  gap: clamp(30px, 5vw, 64px);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
}

.trust-copy h2 {
  font-size: clamp(1.9rem, 3.6vw, 3.2rem);
}

.trust-copy p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.35vw, 1.18rem);
  line-height: 1.45;
  max-width: 540px;
}

.link-panel {
  display: grid;
  gap: 10px;
}

.link-panel a {
  align-items: center;
  background: var(--paper);
  border-radius: 18px;
  display: grid;
  gap: 4px;
  padding: 22px 24px;
  text-decoration: none;
  transition: background 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

body.home-page .link-panel a {
  background: var(--white);
}

.link-panel a:hover {
  transform: translateY(-2px);
}

.link-panel strong {
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: -0.012em;
}

.link-panel span {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ============================================================ */
/* FINAL CTA                                                    */
/* ============================================================ */

.final-cta {
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding: clamp(88px, 12vw, 160px) 0;
  position: relative;
  text-align: center;
}

.final-cta::before {
  background:
    radial-gradient(circle at 30% 40%, var(--halo-2) 0%, transparent 38%),
    radial-gradient(circle at 70% 60%, var(--halo-1) 0%, transparent 38%);
  content: "";
  filter: blur(70px);
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
  position: absolute;
}

.final-cta .section-shell {
  position: relative;
}

.final-cta h2 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  letter-spacing: -0.032em;
  margin: 0 auto 18px;
  max-width: 820px;
}

.final-cta p {
  color: rgba(245, 245, 247, 0.78);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  margin: 0 auto 32px;
  max-width: 560px;
}

.final-cta .hero-actions {
  justify-content: center;
}

/* ============================================================ */
/* FOOTER                                                       */
/* ============================================================ */

.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--line-light);
  color: var(--muted);
  font-size: 0.78rem;
  padding: 26px 0;
}

body.home-page .site-footer {
  background: var(--black);
  border-top-color: rgba(255, 255, 255, 0.1);
  color: rgba(245, 245, 247, 0.55);
}

.site-footer .section-shell {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--ink);
}

body.home-page .site-footer a:hover {
  color: var(--white);
}

/* ============================================================ */
/* SUPPORT PAGE                                                 */
/* ============================================================ */

.support-hero {
  align-items: center;
  color: var(--ink);
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 1fr) minmax(230px, 380px);
  padding: clamp(70px, 10vw, 130px) 0 clamp(60px, 8vw, 96px);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.support-hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 1.02;
  margin-bottom: 18px;
}

.support-hero p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.5;
  max-width: 540px;
}

.support-hero .button {
  margin-top: 24px;
}

.support-hero-art {
  align-items: center;
  background: linear-gradient(160deg, #ffe0c8 0%, #ffb09a 60%, #ff8b9c 100%);
  border-radius: var(--radius-card);
  display: flex;
  justify-content: center;
  justify-self: end;
  overflow: hidden;
  padding: clamp(24px, 4vw, 44px);
  position: relative;
  width: 100%;
}

.support-hero-art img {
  border-radius: clamp(18px, 2.2vw, 28px);
  box-shadow: 0 28px 70px -20px rgba(28, 14, 28, 0.4);
  width: 100%;
}

.support-page .button.primary {
  background: var(--blue);
  color: var(--white);
}

.support-page .button.primary:hover {
  background: var(--blue-hover);
}

.faq {
  color: var(--ink);
  display: grid;
  gap: clamp(18px, 2.4vw, 26px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-bottom: clamp(72px, 10vw, 130px);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.faq article {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
}

.faq h2 {
  font-size: clamp(1.1rem, 1.55vw, 1.32rem);
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.2;
  margin-bottom: 10px;
}

.faq p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.support-page a:not(.button):not(nav a) {
  color: var(--blue);
  font-weight: 500;
  text-decoration: none;
}

.support-page a:not(.button):not(nav a):hover {
  text-decoration: underline;
}

/* ============================================================ */
/* LEGAL / DOCUMENT PAGE                                        */
/* ============================================================ */

.document {
  background: var(--white);
  border-radius: 24px;
  color: var(--ink);
  margin: clamp(40px, 6vw, 72px) auto clamp(60px, 8vw, 100px);
  padding: clamp(40px, 6vw, 80px) clamp(28px, 5vw, 72px);
  width: min(820px, calc(100% - 40px));
}

.document h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 1.04;
  margin-bottom: 18px;
}

.document .updated {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 28px;
}

.document h2 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 38px 0 10px;
}

.document p,
.document li {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.55;
}

.document a {
  color: var(--blue);
  font-weight: 500;
  text-decoration: none;
}

.document a:hover {
  text-decoration: underline;
}

/* ============================================================ */
/* RESPONSIVE                                                   */
/* ============================================================ */

@media (max-width: 1000px) {
  .sharing-layout,
  .trust-grid,
  .support-hero {
    grid-template-columns: 1fr;
  }

  .sharing-screen,
  .support-hero-art {
    justify-self: center;
    max-width: 480px;
    width: 100%;
  }
}

@media (max-width: 720px) {
  .section-shell,
  .support-hero,
  .faq {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    padding: 0 18px;
  }

  .hero {
    padding-top: clamp(48px, 12vw, 80px);
  }

  .hero h1 {
    font-size: clamp(2.6rem, 11vw, 4rem);
  }

  .hero-screens {
    grid-template-columns: 1fr;
  }

  .hero-screen.left,
  .hero-screen.right {
    display: none;
  }

  .hero-caption {
    gap: 14px;
  }

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

  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-card {
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 480px) {
  .faq {
    grid-template-columns: 1fr;
  }
  .style-grid {
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .style-grid img,
  .button,
  .bento-card,
  .link-panel a {
    transition: none;
  }
}
