:root {
  --ink: #242127;
  --ink-soft: #514b56;
  --paper: #fffaf2;
  --paper-deep: #f7efdf;
  --white: #ffffff;
  --coral: #ff6f61;
  --coral-dark: #e64f45;
  --pink: #ffd3dc;
  --blue: #73a8ff;
  --blue-soft: #dceaff;
  --yellow: #ffd75e;
  --mint: #9bdec8;
  --green: #28745f;
  --lavender: #d9ccff;
  --border: #29242c;
  --shadow: 6px 7px 0 rgba(36, 33, 39, 0.95);
  --shadow-soft: 0 24px 70px rgba(69, 53, 44, 0.12);
  --radius-lg: 30px;
  --radius-md: 20px;
  --shell: min(1160px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-rounded, "SF Pro Rounded", "Avenir Next", Avenir, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.2em;
}

a:focus-visible,
button:focus-visible {
  outline: 4px solid var(--blue);
  outline-offset: 4px;
}

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

h1,
h2,
h3,
.brand,
.button {
  letter-spacing: -0.035em;
}

h1,
h2,
h3 {
  line-height: 1.08;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(36, 33, 39, 0.12);
  background: rgba(255, 250, 242, 0.95);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 1.13rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 2px solid var(--border);
  border-radius: 12px 12px 15px 9px;
  color: var(--white);
  background: var(--coral);
  box-shadow: 2px 3px 0 var(--border);
  font-size: 1.08rem;
  line-height: 1;
  transform: rotate(-3deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 750;
}

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

.site-nav a:not(.nav-pill):hover,
.site-nav a[aria-current="page"]:not(.nav-pill) {
  color: var(--coral-dark);
}

.nav-pill {
  padding: 8px 17px;
  border: 2px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 2px 3px 0 var(--border);
}

.nav-pill:hover,
.nav-pill[aria-current="page"] {
  background: var(--yellow);
}

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(460px, 1.07fr);
  align-items: center;
  gap: clamp(40px, 7vw, 92px);
  padding-block: 70px 82px;
}

.eyebrow {
  margin-bottom: 15px;
  color: var(--coral-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  margin-right: 8px;
  color: var(--coral);
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(3.6rem, 6.4vw, 6.4rem);
  font-weight: 900;
  line-height: 0.94;
}

.hero h1 span {
  color: var(--coral);
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 1.12rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 2px solid var(--border);
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translate(-1px, -2px);
}

.button-primary {
  color: var(--white);
  background: var(--coral);
  box-shadow: 4px 5px 0 var(--border);
}

.button-primary:hover {
  background: var(--coral-dark);
  box-shadow: 6px 7px 0 var(--border);
}

.button-secondary {
  background: var(--white);
}

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

.button-dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 4px 5px 0 var(--coral);
}

.button-dark:hover {
  box-shadow: 6px 7px 0 var(--coral);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 750;
  list-style: none;
}

.trust-row li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--green);
  font-weight: 900;
}

.hero-art {
  position: relative;
  min-height: 550px;
  display: grid;
  place-items: center;
}

.hero-art::before {
  content: "";
  position: absolute;
  width: 90%;
  aspect-ratio: 1;
  border-radius: 43% 57% 58% 42% / 48% 43% 57% 52%;
  background: var(--yellow);
  transform: rotate(-5deg);
}

.device {
  position: relative;
  z-index: 2;
  width: min(450px, 90%);
  aspect-ratio: 0.78;
  padding: 15px;
  border: 4px solid var(--border);
  border-radius: 42px;
  background: var(--ink);
  box-shadow: 14px 18px 0 rgba(230, 79, 69, 0.92), 0 38px 80px rgba(36, 33, 39, 0.24);
  transform: rotate(3deg);
}

.device-top {
  position: absolute;
  z-index: 3;
  top: 7px;
  left: 50%;
  width: 10px;
  height: 10px;
  border: 2px solid #55505a;
  border-radius: 50%;
  background: #161419;
  transform: translateX(-50%);
}

.device-screen {
  height: 100%;
  overflow: hidden;
  padding: 26px 20px 20px;
  border-radius: 25px;
  background: #fffaf3;
}

.gallery-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.gallery-heading strong {
  display: block;
  margin-top: 2px;
  font-size: clamp(1rem, 2.1vw, 1.35rem);
  line-height: 1.15;
}

.mini-label {
  color: var(--coral-dark);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mini-avatar {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 2px solid var(--border);
  border-radius: 50%;
  color: var(--ink);
  background: var(--mint);
  font-size: 0.9rem;
}

.gallery-chips {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
}

.gallery-chips span {
  padding: 5px 9px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.55rem;
  font-weight: 750;
  line-height: 1;
}

.gallery-chips span:first-child {
  background: var(--ink);
  color: var(--white);
}

.art-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.art-card {
  min-width: 0;
  padding: 12px;
  border: 2px solid var(--border);
  border-radius: 17px;
  box-shadow: 3px 3px 0 var(--border);
}

.art-card b,
.art-card small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.art-card b {
  font-size: 0.68rem;
}

.art-card small {
  margin-top: 2px;
  color: rgba(36, 33, 39, 0.68);
  font-size: 0.48rem;
  font-weight: 650;
}

.art-card-coral { background: #ffddd7; }
.art-card-blue { background: #dceaff; }
.art-card-yellow { background: #fff0a8; }
.art-card-mint { background: #d6f3e9; }

.art-shape {
  position: relative;
  height: clamp(78px, 12vw, 120px);
  display: grid;
  place-items: center;
  margin-bottom: 9px;
  border: 2px solid var(--border);
  color: var(--white);
  font-size: clamp(1.6rem, 4.5vw, 3rem);
  text-shadow: 1px 2px 0 var(--border);
}

.shape-bear {
  border-radius: 46% 46% 40% 40%;
  background: var(--coral);
}

.shape-moth {
  border-radius: 65% 22% 65% 22%;
  background: #7b61d1;
  transform: rotate(2deg);
}

.shape-fruit {
  border-radius: 48% 52% 60% 40%;
  background: #ef6b82;
}

.shape-comet {
  border-radius: 55% 45% 48% 52%;
  background: #2da68b;
}

.pencil {
  position: absolute;
  z-index: 4;
  right: -1%;
  bottom: 4%;
  width: 28px;
  height: 64%;
  border: 3px solid var(--border);
  border-radius: 15px 15px 5px 5px;
  background: linear-gradient(to bottom, var(--coral) 0 72%, #ffe4c8 72% 92%, var(--ink) 92%);
  box-shadow: 5px 6px 0 rgba(36, 33, 39, 0.26);
  transform: rotate(35deg);
}

.sticker {
  position: absolute;
  z-index: 5;
  left: -3%;
  bottom: 10%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 15px;
  background: var(--white);
  box-shadow: 4px 5px 0 var(--border);
  line-height: 1.15;
  transform: rotate(-5deg);
}

.sticker b,
.sticker span {
  display: block;
}

.sticker b {
  color: var(--green);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.sticker span {
  margin-top: 2px;
  font-size: 0.63rem;
  font-weight: 700;
}

.spark {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  color: var(--white);
  text-shadow: 2px 2px 0 var(--border);
}

.spark-one {
  top: 1%;
  right: 2%;
  font-size: 3.2rem;
  transform: rotate(14deg);
}

.spark-two {
  left: 1%;
  top: 15%;
  color: var(--coral);
  font-size: 2.6rem;
  transform: rotate(-12deg);
}

.marquee {
  overflow: hidden;
  border-block: 2px solid var(--border);
  background: var(--coral);
  color: var(--white);
}

.marquee div {
  min-width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 16px 28px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marquee i {
  color: var(--yellow);
  font-size: 1rem;
  font-style: normal;
}

.section {
  padding-block: 116px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading h2,
.privacy-copy h2,
.update-copy h2,
.closing h2,
.support-contact h2 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 4.5vw, 4.3rem);
  font-weight: 900;
}

.section-heading > p:last-child,
.update-copy > p,
.closing > div > p:last-child {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  position: relative;
  min-height: 370px;
  padding: 28px;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.card-pink { background: var(--pink); }
.card-blue { background: var(--blue-soft); }
.card-green { background: #d7f2e9; }

.feature-number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: rgba(36, 33, 39, 0.5);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.feature-icon {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  margin: 35px 0 38px;
  border: 2px solid var(--border);
  border-radius: 42% 58% 53% 47%;
  background: var(--white);
  box-shadow: 4px 5px 0 var(--border);
  font-size: 3rem;
  transform: rotate(-3deg);
}

.feature-card:nth-child(2) .feature-icon { transform: rotate(4deg); }
.feature-card:nth-child(3) .feature-icon { transform: rotate(-6deg); }

.feature-card h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
  font-weight: 900;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.privacy-band {
  position: relative;
  overflow: hidden;
  border-block: 2px solid var(--border);
  color: var(--white);
  background: #2d2a36;
}

.privacy-band::before,
.privacy-band::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.privacy-band::before {
  width: 360px;
  height: 360px;
  left: -180px;
  bottom: -190px;
}

.privacy-band::after {
  width: 460px;
  height: 460px;
  right: -230px;
  top: -250px;
}

.privacy-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(50px, 9vw, 130px);
  padding-block: 100px;
}

.eyebrow-light {
  color: var(--yellow);
}

.privacy-copy p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 16px;
  font-weight: 850;
}

.text-link-light {
  color: var(--white);
  text-decoration-color: var(--coral);
}

.privacy-list {
  display: grid;
  gap: 14px;
}

.privacy-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.privacy-list > div > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--mint);
  font-weight: 900;
}

.privacy-list p,
.privacy-list b,
.privacy-list small {
  display: block;
  margin: 0;
}

.privacy-list b {
  font-size: 0.95rem;
}

.privacy-list small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
}

.updates-section {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(60px, 10vw, 145px);
}

.update-art {
  position: relative;
  min-height: 480px;
}

.paper {
  position: absolute;
  width: 300px;
  aspect-ratio: 0.82;
  display: grid;
  place-items: center;
  border: 3px solid var(--border);
  border-radius: 18px;
  box-shadow: 7px 8px 0 var(--border);
}

.paper-back {
  left: 5%;
  top: 35px;
  color: var(--white);
  background: var(--blue);
  font-size: 7rem;
  transform: rotate(-10deg);
}

.paper-front {
  right: 0;
  top: 75px;
  align-content: center;
  gap: 18px;
  padding: 36px;
  background: var(--pink);
  transform: rotate(8deg);
}

.paper-front span {
  font-size: 4.8rem;
  line-height: 1;
}

.paper-front b {
  font-size: 1.3rem;
  line-height: 1.1;
  text-align: center;
}

.crayon {
  position: absolute;
  z-index: 3;
  width: 24px;
  height: 180px;
  border: 2px solid var(--border);
  border-radius: 6px;
  box-shadow: 3px 4px 0 rgba(36, 33, 39, 0.35);
}

.crayon::before {
  content: "";
  position: absolute;
  top: -25px;
  left: -2px;
  border-right: 12px solid transparent;
  border-bottom: 25px solid currentColor;
  border-left: 12px solid transparent;
}

.crayon-coral {
  right: 8%;
  bottom: 18px;
  color: var(--coral);
  background: var(--coral);
  transform: rotate(31deg);
}

.crayon-blue {
  left: 12%;
  bottom: 0;
  color: #526edb;
  background: #526edb;
  transform: rotate(-47deg);
}

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

.device-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  color: var(--ink) !important;
  background: var(--white);
  font-size: 0.78rem !important;
  font-weight: 800;
}

.device-note span {
  color: var(--coral);
  font-size: 1.2rem;
}

.closing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 100px;
  padding: 55px 62px;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--yellow);
  box-shadow: var(--shadow);
}

.closing > div {
  max-width: 670px;
}

.closing h2 {
  margin-bottom: 12px;
}

.closing p:last-child {
  margin-bottom: 0;
}

.closing .button {
  flex: 0 0 auto;
}

.site-footer {
  border-top: 2px solid var(--border);
  background: var(--paper-deep);
}

.footer-inner {
  min-height: 210px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr auto;
  align-items: center;
  gap: 40px;
  padding-block: 40px;
}

.brand-footer {
  margin-bottom: 12px;
}

.footer-inner > div > p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.83rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 24px;
  font-size: 0.85rem;
  font-weight: 750;
}

.footer-links a[aria-current="page"] {
  color: var(--coral-dark);
}

.copyright {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  white-space: nowrap;
}

/* Policy, support, and terms pages */
.policy-main {
  min-height: 70vh;
}

.policy-hero {
  overflow: hidden;
  border-bottom: 2px solid var(--border);
  background: var(--pink);
}

.support-hero { background: var(--blue-soft); }
.terms-hero { background: #d7f2e9; }

.policy-hero-inner {
  min-height: 365px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding-block: 66px;
}

.policy-hero-inner > div:first-child {
  max-width: 790px;
}

.policy-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  font-weight: 900;
}

.policy-hero p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.policy-seal {
  flex: 0 0 auto;
  width: 178px;
  height: 178px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 3px solid var(--border);
  border-radius: 48% 52% 46% 54%;
  background: var(--yellow);
  box-shadow: 7px 8px 0 var(--border);
  text-align: center;
  transform: rotate(6deg);
}

.policy-seal span {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.policy-seal b {
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-transform: uppercase;
}

.support-seal { background: var(--coral); color: var(--white); }
.terms-seal { background: var(--lavender); }

.policy-content {
  max-width: 850px;
  padding-block: 70px 110px;
}

.effective-date {
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.policy-summary {
  margin-bottom: 62px;
  padding: 26px 30px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--yellow);
  box-shadow: 4px 5px 0 var(--border);
}

.policy-summary strong {
  display: block;
  margin-bottom: 7px;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.policy-summary p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 650;
}

.policy-content section {
  padding-block: 10px 25px;
  border-bottom: 1px solid rgba(36, 33, 39, 0.14);
}

.policy-content section + section {
  padding-top: 34px;
}

.policy-content section:last-child {
  border-bottom: 0;
}

.policy-content h2,
.faq-list h2 {
  margin-bottom: 13px;
  font-size: 1.5rem;
  font-weight: 900;
}

.policy-content p {
  color: var(--ink-soft);
}

.policy-content section p:last-child {
  margin-bottom: 0;
}

.policy-content a,
.support-layout a:not(.button) {
  color: #b83430;
  font-weight: 750;
}

.support-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: clamp(55px, 9vw, 125px);
  padding-block: 80px 120px;
}

.support-contact {
  position: sticky;
  top: 30px;
  padding: 32px;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--yellow);
  box-shadow: var(--shadow);
}

.support-contact h2 {
  font-size: 2.2rem;
}

.support-contact > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.support-contact .button {
  width: 100%;
  margin: 10px 0 20px;
  font-size: clamp(0.7rem, 1.5vw, 0.88rem);
}

.support-contact small {
  display: block;
  color: var(--ink-soft);
  font-size: 0.75rem;
  line-height: 1.5;
}

.faq-list {
  display: grid;
  gap: 0;
}

.faq-list article {
  padding: 2px 0 32px;
  border-bottom: 1px solid rgba(36, 33, 39, 0.15);
}

.faq-list article + article {
  padding-top: 32px;
}

.faq-list article:last-child {
  border-bottom: 0;
}

.faq-list p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.compact-footer .footer-inner {
  min-height: 130px;
  grid-template-columns: auto 1fr auto;
}

.compact-footer .brand-footer {
  margin: 0;
}

.compact-footer .footer-links {
  justify-content: center;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 76px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-art {
    width: min(640px, 100%);
    margin-inline: auto;
  }

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

  .feature-card {
    min-height: 0;
    display: grid;
    grid-template-columns: 130px 1fr;
    align-items: center;
    column-gap: 28px;
  }

  .feature-icon {
    grid-row: 1 / 3;
    margin: 16px 0;
  }

  .feature-card h3 {
    align-self: end;
    margin: 15px 0 8px;
  }

  .feature-card p {
    align-self: start;
  }

  .privacy-layout,
  .updates-section {
    grid-template-columns: 1fr;
  }

  .privacy-copy {
    max-width: 720px;
  }

  .updates-section {
    gap: 20px;
  }

  .update-art {
    width: min(540px, 100%);
    margin-inline: auto;
  }

  .update-copy {
    max-width: 760px;
  }

  .support-layout {
    grid-template-columns: 1fr;
  }

  .support-contact {
    position: static;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: min(100% - 28px, 1160px);
    --shadow: 4px 5px 0 rgba(36, 33, 39, 0.95);
  }

  body {
    font-size: 16px;
  }

  .header-inner {
    min-height: 72px;
    gap: 14px;
  }

  .brand {
    font-size: 1rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .site-nav {
    gap: 12px;
    font-size: 0.78rem;
  }

  .site-nav a[href="#how-it-works"] {
    display: none;
  }

  .nav-pill {
    padding: 6px 11px;
  }

  .hero {
    min-height: 0;
    gap: 40px;
    padding-block: 58px 68px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 17vw, 5.2rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .trust-row {
    gap: 7px 15px;
  }

  .hero-art {
    min-height: 440px;
  }

  .device {
    width: min(340px, 86%);
    padding: 11px;
    border-width: 3px;
    border-radius: 32px;
    box-shadow: 9px 12px 0 rgba(230, 79, 69, 0.92), 0 25px 55px rgba(36, 33, 39, 0.22);
  }

  .device-screen {
    padding: 22px 13px 14px;
    border-radius: 19px;
  }

  .art-grid {
    gap: 8px;
  }

  .art-card {
    padding: 8px;
    border-radius: 12px;
  }

  .art-shape {
    height: 72px;
  }

  .pencil {
    right: 0;
    height: 55%;
  }

  .sticker {
    left: 0;
    bottom: 5%;
  }

  .spark-one {
    right: 0;
    font-size: 2.5rem;
  }

  .spark-two {
    left: 0;
    font-size: 2.1rem;
  }

  .marquee div {
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    font-size: 0.67rem;
    scrollbar-width: none;
  }

  .marquee div::-webkit-scrollbar {
    display: none;
  }

  .section {
    padding-block: 82px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .privacy-copy h2,
  .update-copy h2,
  .closing h2 {
    font-size: 2.55rem;
  }

  .feature-card {
    display: block;
    padding: 24px;
  }

  .feature-icon {
    width: 92px;
    height: 92px;
    margin: 30px 0 28px;
    font-size: 2.5rem;
  }

  .feature-card h3 {
    margin-top: 0;
  }

  .privacy-layout {
    gap: 45px;
    padding-block: 75px;
  }

  .privacy-list > div {
    padding: 14px;
  }

  .update-art {
    min-height: 380px;
  }

  .paper {
    width: 225px;
  }

  .paper-back {
    font-size: 5rem;
  }

  .paper-front {
    padding: 24px;
  }

  .paper-front span {
    font-size: 3.6rem;
  }

  .paper-front b {
    font-size: 1rem;
  }

  .crayon {
    height: 135px;
  }

  .closing {
    display: block;
    margin-bottom: 75px;
    padding: 36px 28px;
  }

  .closing .button {
    width: 100%;
    margin-top: 25px;
  }

  .footer-inner,
  .compact-footer .footer-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 24px;
    padding-block: 45px;
  }

  .compact-footer .footer-links {
    justify-content: flex-start;
  }

  .policy-hero-inner {
    min-height: 0;
    padding-block: 58px;
  }

  .policy-hero h1 {
    font-size: clamp(3.1rem, 15vw, 5rem);
  }

  .policy-seal {
    display: none;
  }

  .policy-content {
    padding-block: 55px 80px;
  }

  .policy-summary {
    margin-bottom: 42px;
    padding: 22px;
  }

  .support-layout {
    gap: 60px;
    padding-block: 55px 85px;
  }

  .support-contact {
    padding: 25px;
  }
}

@media (max-width: 430px) {
  .brand > span:last-child {
    display: none;
  }

  .site-nav {
    gap: 9px;
  }

  .hero-art {
    min-height: 405px;
  }

  .sticker {
    padding: 9px 11px;
  }

  .paper {
    width: 195px;
  }

  .update-art {
    min-height: 340px;
  }

  .support-contact .button {
    padding-inline: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .policy-seal {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 12pt;
  }

  .policy-hero {
    border: 0;
    background: #fff;
  }

  .policy-hero-inner {
    min-height: 0;
    padding: 30px 0;
  }

  .policy-summary {
    box-shadow: none;
    background: #fff;
  }
}
