:root {
  --forest: #0b190f;
  --forest-soft: #13271b;
  --cream: #faf0de;
  --paper: #f6f7f2;
  --primary-green: #326f60;
  --green-dark: #205548;
  --mint: #ddeee6;
  --timed-blue: #dce8f1;
  --timed-ink: #295877;
  --blocked-rose: #efdfdc;
  --blocked-ink: #8d342c;
  --ink: #232921;
  --muted: #596258;
  --line: #d6ddd2;
  --white: #fff;
  --shadow: 0 22px 60px rgba(11, 25, 15, 0.12);
  --radius: 24px;
  --font: "Avenir Next", Avenir, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
input,
summary {
  font: inherit;
}

::selection {
  color: var(--forest);
  background: var(--cream);
}

:focus-visible {
  outline: 3px solid #f2a93b;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 0.7rem 1rem;
  color: var(--forest);
  background: var(--cream);
  border-radius: 10px;
  font-weight: 800;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  color: var(--cream);
  background: rgba(11, 25, 15, 0.96);
  border-bottom: 1px solid rgba(250, 240, 222, 0.12);
  backdrop-filter: blur(14px);
}

.header-inner,
.hero-inner,
.section,
.safety-inner,
.final-cta,
.footer-inner {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
}

.header-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.035em;
  font-size: 1.22rem;
}

.brand img {
  width: 35px;
  height: 35px;
  border-radius: 9px;
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2.4vw, 2rem);
}

.site-header nav a {
  color: rgba(250, 240, 222, 0.76);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
}

.site-header nav a:hover {
  color: var(--cream);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.8rem 1.15rem;
  color: var(--white);
  background: var(--primary-green);
  border: 1px solid transparent;
  border-radius: 14px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 8px 22px rgba(50, 111, 96, 0.17);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--green-dark);
  box-shadow: 0 12px 28px rgba(50, 111, 96, 0.24);
  transform: translateY(-2px);
}

.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button-small {
  min-height: 44px;
  padding: 0.65rem 0.95rem;
  font-size: 0.8rem;
}

.button-cream {
  color: var(--forest);
  background: var(--cream);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.button-cream:hover {
  color: var(--forest);
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  color: var(--primary-green);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  font-weight: 800;
}

.text-link-light {
  color: var(--cream);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--cream);
  background: var(--forest);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.12;
  background-image: linear-gradient(rgba(250, 240, 222, 0.12) 1px, transparent 1px);
  background-size: 100% 72px;
}

.hero-ring {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: -10vw;
  width: min(55vw, 760px);
  aspect-ratio: 1;
  border: clamp(26px, 4.5vw, 68px) solid rgba(250, 240, 222, 0.08);
  border-right-color: transparent;
  border-radius: 50%;
  transform: translateY(-48%) rotate(-12deg);
}

.hero-inner {
  min-height: calc(100svh - 76px);
  padding-block: clamp(4rem, 8vw, 7.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.72fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--primary-green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero .eyebrow,
.safety-section .eyebrow,
.final-cta .eyebrow {
  color: #9bc9b8;
}

.final-cta .eyebrow {
  color: #e6f2ec;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.06;
  letter-spacing: -0.05em;
}

h1 {
  margin-bottom: 1.55rem;
  font-size: clamp(3rem, 6.4vw, 6.6rem);
  max-width: 10ch;
}

h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.3rem, 4.8vw, 4.8rem);
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.45rem, 2vw, 2.15rem);
}

.hero-lead {
  max-width: 62ch;
  margin: 0;
  color: rgba(250, 240, 222, 0.76);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.75;
}

.actions {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem 1.4rem;
}

.reassurance {
  margin: 1.1rem 0 0;
  color: rgba(250, 240, 222, 0.6);
  font-size: 0.82rem;
  font-weight: 700;
}

.status-labels {
  margin: 2rem 0 0;
  padding: 1.1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  border-top: 1px solid rgba(250, 240, 222, 0.14);
  list-style: none;
}

.status-labels li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(250, 240, 222, 0.78);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.status-labels span {
  width: 7px;
  height: 7px;
  background: #9bc9b8;
  border-radius: 50%;
}

.hero-device,
.safety-device {
  margin: 0;
  justify-self: center;
  width: min(100%, 430px);
}

.phone-shell {
  padding: 9px;
  overflow: hidden;
  background: #080d09;
  border: 1px solid rgba(250, 240, 222, 0.22);
  border-radius: 38px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
}

.phone-shell picture,
.phone-shell img,
.shot-window picture,
.shot-window img,
.shot-stage picture,
.shot-stage img {
  width: 100%;
}

.phone-shell img {
  height: auto;
  border-radius: 29px;
}

.hero-device figcaption,
.safety-device figcaption {
  margin-top: 1rem;
  color: rgba(250, 240, 222, 0.55);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section {
  padding-block: clamp(5rem, 9vw, 9rem);
}

.section-intro {
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 6rem);
}

.section-intro h2 {
  margin-bottom: 0;
  max-width: 14ch;
}

.section-intro > p,
.section-lead {
  color: var(--muted);
  font-size: 1.08rem;
}

.state-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
}

.state-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 38px rgba(11, 25, 15, 0.06);
}

.state-open {
  background: var(--mint);
}

.state-copy,
.access-copy {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.state-copy {
  position: relative;
  min-height: 245px;
}

.state-copy .eyebrow {
  margin-bottom: 0.65rem;
}

.state-copy p:last-child,
.access-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.state-number {
  position: absolute;
  top: 1rem;
  right: 1.4rem;
  margin: 0;
  color: #717970;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.08em;
}

.shot-window {
  height: 540px;
  margin: 0 clamp(0.75rem, 2vw, 1.5rem) clamp(0.75rem, 2vw, 1.5rem);
  overflow: hidden;
  background: #f9faf7;
  border: 1px solid rgba(35, 41, 33, 0.12);
  border-radius: 20px;
}

.shot-window-tall {
  height: 540px;
}

.shot-window img {
  height: auto;
}

.shot-window-tall img {
  transform: translateY(-1%);
}

blockquote {
  max-width: 980px;
  margin: clamp(3.5rem, 7vw, 6rem) auto 0;
  padding-left: clamp(1.2rem, 3vw, 2.3rem);
  color: var(--muted);
  border-left: 4px solid var(--primary-green);
  font-size: clamp(1.7rem, 3.5vw, 3.3rem);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

blockquote strong {
  color: var(--ink);
}

.essentials-section {
  width: 100%;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  background: var(--cream);
}

.essentials-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.shot-stage {
  width: min(100%, 500px);
  margin-inline: auto;
  padding: 10px;
  overflow: hidden;
  background: var(--forest);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.shot-stage img {
  height: auto;
  border-radius: 25px;
}

.essentials-copy h2 {
  max-width: 12ch;
}

.essential-list {
  margin: 2rem 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  list-style: none;
}

.essential-list li {
  position: relative;
  padding-left: 1.25rem;
  font-weight: 750;
}

.essential-list li::before {
  content: "";
  position: absolute;
  top: 0.67rem;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--primary-green);
  border-radius: 50%;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(35, 41, 33, 0.14);
  border-radius: 18px;
}

.plans div {
  padding: 1.1rem;
  display: grid;
  border-right: 1px solid rgba(35, 41, 33, 0.12);
}

.plans div:last-child {
  border-right: 0;
}

.plans span,
.plans small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plans strong {
  margin-block: 0.1rem;
  color: var(--primary-green);
  font-size: 2.1rem;
  line-height: 1.1;
}

.plan-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.centered-heading {
  max-width: 900px;
  margin: 0 auto clamp(2.5rem, 6vw, 5rem);
  text-align: center;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
}

.access-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.blocked-card {
  background: var(--blocked-rose);
}

.timed-card {
  background: var(--timed-blue);
}

.access-copy {
  min-height: 300px;
}

.state-chip {
  width: fit-content;
  margin: 0 0 1.3rem;
  padding: 0.45rem 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--blocked-ink);
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid currentColor;
  border-radius: 9px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.timed-card .state-chip {
  color: var(--timed-ink);
}

.safety-section {
  color: var(--cream);
  background: var(--forest);
  overflow: hidden;
}

.safety-inner {
  padding-block: clamp(5rem, 9vw, 9rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.63fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.safety-copy > h2 {
  max-width: 11ch;
}

.safety-copy > .section-lead {
  max-width: 58ch;
  color: rgba(250, 240, 222, 0.68);
}

.safety-cards {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(250, 240, 222, 0.16);
}

.safety-cards article {
  padding-block: 1.35rem;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 1rem;
  border-bottom: 1px solid rgba(250, 240, 222, 0.16);
}

.safety-cards article > span {
  color: #9bc9b8;
  font-size: 0.78rem;
  font-weight: 900;
}

.safety-cards h3 {
  margin-bottom: 0.3rem;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.safety-cards p {
  margin: 0;
  color: rgba(250, 240, 222, 0.65);
  font-size: 0.93rem;
}

.limitations {
  margin-top: 2rem;
  padding: 1.2rem 1.35rem;
  background: rgba(250, 240, 222, 0.07);
  border: 1px solid rgba(250, 240, 222, 0.15);
  border-radius: 16px;
}

.limitations strong {
  color: #9bc9b8;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.limitations p {
  margin: 0.35rem 0 0;
  color: rgba(250, 240, 222, 0.7);
  font-size: 0.86rem;
}

.home-crop {
  height: 700px;
}

.home-crop img {
  height: auto;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-heading h2 {
  max-width: 9ch;
}

.faq-heading > p:last-child {
  max-width: 38ch;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 76px;
  padding-block: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 22px;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 850;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  width: 20px;
  height: 20px;
}

.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 2px;
  width: 16px;
  height: 2px;
  background: var(--primary-green);
  transition: transform 160ms ease;
}

.faq-list summary span::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details > p {
  max-width: 62ch;
  margin: -0.4rem 0 1.5rem;
  color: var(--muted);
}

.final-cta {
  position: relative;
  isolation: isolate;
  margin-bottom: clamp(2rem, 4vw, 4rem);
  padding: clamp(2.5rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2rem;
  overflow: hidden;
  color: var(--cream);
  background: var(--primary-green);
  border-radius: clamp(22px, 3vw, 34px);
}

.final-cta h2 {
  margin-bottom: 1rem;
  max-width: 12ch;
}

.final-cta > div > p:last-child {
  margin: 0;
  color: rgba(250, 240, 222, 0.74);
}

.final-ring {
  position: absolute;
  z-index: -1;
  top: -35%;
  right: 5%;
  width: min(36vw, 430px);
  opacity: 0.08;
  transform: rotate(-12deg);
}

.final-ring img {
  width: 100%;
  height: auto;
}

.final-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}

.site-footer {
  color: var(--cream);
  background: var(--forest);
}

.footer-inner {
  min-height: 150px;
  padding-block: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-identity p {
  margin: 0.35rem 0 0;
  color: rgba(250, 240, 222, 0.55);
  font-size: 0.78rem;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem 0.65rem;
  color: rgba(250, 240, 222, 0.72);
  font-size: 0.82rem;
}

.legal-nav a {
  text-underline-offset: 4px;
}

.legal-nav a:hover {
  color: var(--cream);
}

/* Legal pages */
.legal-page {
  background: var(--paper);
}

.legal-page .site-header {
  color: var(--cream);
}

.legal-main {
  width: min(100% - 40px, 860px);
  margin-inline: auto;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.legal-copy > .eyebrow {
  margin-bottom: 1.2rem;
}

.legal-copy h1 {
  max-width: 16ch;
  margin-bottom: 1rem;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.legal-copy > p:nth-of-type(2),
.legal-intro {
  color: var(--muted);
  font-size: 1.06rem;
}

.legal-copy h2 {
  margin-top: 3.6rem;
  margin-bottom: 1rem;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  letter-spacing: -0.035em;
  scroll-margin-top: 110px;
}

.legal-copy h3 {
  margin-top: 2.2rem;
  margin-bottom: 0.7rem;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  scroll-margin-top: 110px;
}

.legal-copy p,
.legal-copy li {
  color: #40483f;
}

.legal-copy a:not(.button) {
  color: var(--green-dark);
  font-weight: 750;
  overflow-wrap: anywhere;
  text-underline-offset: 3px;
}

.legal-copy ul,
.legal-copy ol {
  padding-left: 1.35rem;
}

.legal-copy li + li {
  margin-top: 0.55rem;
}

.legal-copy code {
  padding: 0.12rem 0.32rem;
  background: #e9ece5;
  border-radius: 5px;
  font-size: 0.9em;
  overflow-wrap: anywhere;
}

.account-deletion {
  margin: 3rem 0 4.5rem;
  padding: clamp(1.5rem, 4vw, 2.7rem);
  background: var(--mint);
  border: 2px solid var(--primary-green);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(50, 111, 96, 0.1);
  scroll-margin-top: 105px;
}

.account-deletion h2 {
  margin-top: 0;
}

.account-deletion h3 {
  color: var(--green-dark);
}

.account-deletion .button {
  margin: 0.5rem 0 0.8rem;
  color: var(--white);
}

.legal-page-nav {
  margin-top: 4rem;
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  border-top: 1px solid var(--line);
}

.legal-page-nav a {
  font-weight: 850;
}

@media (max-width: 960px) {
  .site-header nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .hero-inner,
  .safety-inner {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.65fr);
    gap: 3rem;
  }

  .hero-inner {
    min-height: auto;
  }

  .state-copy,
  .access-copy {
    min-height: 0;
  }

  .essentials-layout {
    gap: 3.5rem;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 78px;
  }

  .header-inner,
  .hero-inner,
  .section,
  .safety-inner,
  .final-cta,
  .footer-inner,
  .legal-main {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 66px;
    gap: 0.7rem;
  }

  .brand {
    font-size: 1.02rem;
  }

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

  .header-cta {
    max-width: 160px;
    min-height: 42px;
    padding: 0.55rem 0.72rem;
    font-size: 0.69rem;
    text-align: center;
  }

  .hero-inner,
  .section-intro,
  .essentials-layout,
  .safety-inner,
  .faq-layout,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-block: 2.55rem 4rem;
    gap: 1.5rem;
  }

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

  h1 {
    margin-bottom: 1rem;
    font-size: clamp(2.7rem, 13vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.6rem);
  }

  .hero-lead {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .actions {
    margin-top: 1.15rem;
  }

  .reassurance {
    margin-top: 0.85rem;
  }

  .status-labels {
    display: none;
  }

  .hero-device {
    width: min(86vw, 390px);
  }

  .hero-ring {
    top: auto;
    right: -30vw;
    bottom: -5vw;
    width: 100vw;
  }

  .section {
    padding-block: 64px;
  }

  .section-intro {
    margin-bottom: 2.4rem;
    gap: 1rem;
  }

  .section-intro h2 {
    max-width: 12ch;
  }

  .state-grid,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .state-card,
  .access-card {
    border-radius: 20px;
  }

  .state-copy,
  .access-copy {
    padding: 1.4rem;
  }

  .shot-window {
    height: 480px;
    margin: 0 0.7rem 0.7rem;
    border-radius: 15px;
  }

  blockquote {
    margin-top: 3rem;
    font-size: 1.65rem;
  }

  .essentials-section {
    padding-inline: 14px;
  }

  .essentials-layout {
    gap: 3rem;
  }

  .essentials-shot {
    order: 2;
    width: min(86vw, 430px);
  }

  .essential-list {
    grid-template-columns: 1fr;
  }

  .plans div {
    padding: 0.85rem 0.7rem;
  }

  .plans small {
    font-size: 0.58rem;
  }

  .centered-heading {
    text-align: left;
  }

  .safety-inner {
    padding-block: 64px;
  }

  .safety-device {
    width: min(86vw, 410px);
  }

  .home-crop {
    height: 590px;
  }

  .faq-layout {
    gap: 2rem;
  }

  .faq-heading {
    position: static;
  }

  .faq-list summary {
    min-height: 70px;
  }

  .final-cta {
    margin-bottom: 14px;
    padding: 2rem 1.35rem;
    align-items: start;
    border-radius: 20px;
  }

  .final-ring {
    top: auto;
    right: -12%;
    bottom: -20%;
    width: 70vw;
  }

  .footer-inner {
    padding-block: 2.2rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-nav {
    justify-content: flex-start;
  }

  .legal-main {
    padding-block: 3.2rem 4.5rem;
  }

  .legal-copy h2 {
    margin-top: 3rem;
  }

  .account-deletion {
    margin-inline: -4px;
    padding: 1.35rem;
    border-radius: 18px;
  }
}

@media (max-width: 380px) {
  .header-inner,
  .hero-inner,
  .section,
  .safety-inner,
  .final-cta,
  .footer-inner,
  .legal-main {
    width: min(100% - 22px, 1180px);
  }

  .header-cta {
    max-width: 142px;
    padding-inline: 0.55rem;
  }

  .button:not(.button-small) {
    width: 100%;
  }

  .actions,
  .final-actions {
    align-items: stretch;
  }

  .plans span,
  .plans small {
    letter-spacing: 0.02em;
  }

  .shot-window {
    height: 430px;
  }
}

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

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