:root {
  color-scheme: light;
  --ink: #17332c;
  --ink-2: #284b42;
  --muted: #687a74;
  --paper: #fbfaf5;
  --paper-2: #f2f1e9;
  --white: #ffffff;
  --green: #245847;
  --green-2: #35705d;
  --green-dark: #132f28;
  --mint: #cfe8d9;
  --mint-pale: #e8f3ec;
  --amber: #d99a46;
  --amber-pale: #fff1d9;
  --line: #dce2dc;
  --shadow: 0 24px 70px rgba(23, 51, 44, .13);
  --shadow-soft: 0 14px 38px rgba(23, 51, 44, .08);
  --radius: 28px;
  --radius-small: 17px;
  --shell: 1180px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: inherit;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #e4aa54;
  outline-offset: 4px;
  border-radius: 8px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform .18s ease;
}

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

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(36, 88, 71, .09);
  background: rgba(251, 250, 245, .9);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 750;
  letter-spacing: -.02em;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 40px;
  overflow: hidden;
  color: var(--white);
  background: var(--green);
  border-radius: 9px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
}

.brand-mark::after {
  position: absolute;
  top: 18px;
  right: 5px;
  width: 3px;
  height: 3px;
  content: "";
  background: var(--mint);
  border-radius: 50%;
}

.brand-mark span {
  margin-right: 2px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--green-2);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(440px, .85fr);
  align-items: center;
  min-height: 760px;
  padding-block: 86px 96px;
  gap: 66px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.eyebrow-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 8px 1px 0;
  background: var(--amber);
  border-radius: 50%;
}

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

h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(48px, 6.2vw, 76px);
  font-weight: 760;
  letter-spacing: -.055em;
  line-height: .99;
}

.lede {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 10px 24px rgba(36, 88, 71, .18);
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, .65);
}

.button-secondary:hover {
  border-color: #b8c9c0;
  background: var(--white);
}

.button-disabled {
  cursor: default;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  padding: 0;
  margin: 25px 0 0;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 680;
  list-style: none;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-list span {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: var(--green);
  background: var(--mint-pale);
  border-radius: 50%;
  font-size: 11px;
}

.product-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 590px;
}

.visual-halo {
  position: absolute;
  inset: 6% 1% 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(207, 232, 217, .95), rgba(207, 232, 217, .35) 46%, transparent 70%);
  border-radius: 50%;
}

.phone-card {
  position: relative;
  z-index: 2;
  width: min(390px, 88%);
  padding: 27px 22px 23px;
  background: var(--white);
  border: 1px solid rgba(23, 51, 44, .1);
  border-radius: 36px;
  box-shadow: var(--shadow);
  transform: rotate(-1.7deg);
}

.phone-card::before {
  display: block;
  width: 96px;
  height: 5px;
  margin: -13px auto 23px;
  content: "";
  background: #d7ddd8;
  border-radius: 999px;
}

.phone-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-topline > div {
  display: grid;
  gap: 1px;
}

.phone-topline strong {
  font-size: 25px;
  letter-spacing: -.035em;
}

.ui-kicker {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

.add-button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--white);
  background: var(--green);
  border-radius: 12px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

.ui-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 14px;
  margin: 20px 0 14px;
  background: var(--paper-2);
  border-radius: 16px;
}

.ui-summary div {
  display: grid;
  justify-items: center;
  gap: 1px;
}

.ui-summary div + div {
  border-left: 1px solid var(--line);
}

.ui-summary strong {
  font-size: 15px;
  line-height: 1.15;
}

.ui-summary span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 650;
}

.appliance-row {
  display: grid;
  grid-template-columns: 44px 1fr 12px;
  align-items: center;
  min-height: 82px;
  padding: 12px 9px;
  gap: 12px;
  border-bottom: 1px solid #edf0ed;
}

.featured-row {
  background: #f8fbf8;
  border: 1px solid #e4ebe6;
  border-radius: 15px;
}

.appliance-icon {
  position: relative;
  display: block;
  width: 42px;
  height: 46px;
  background: var(--mint-pale);
  border: 1px solid #d5e4db;
  border-radius: 10px;
}

.appliance-icon::before,
.appliance-icon::after {
  position: absolute;
  content: "";
}

.fridge::before {
  top: 14px;
  left: 5px;
  width: 30px;
  height: 1px;
  background: #8aa79b;
}

.fridge::after {
  top: 7px;
  right: 6px;
  width: 2px;
  height: 7px;
  background: #6c9082;
  box-shadow: 0 12px 0 #6c9082;
  border-radius: 2px;
}

.washer {
  background: #eef2f1;
}

.washer span {
  position: absolute;
  top: 12px;
  left: 8px;
  width: 24px;
  height: 24px;
  border: 3px solid #78938a;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px #dfe8e4;
}

.hvac {
  height: 39px;
  background: #eff1e9;
}

.hvac span {
  position: absolute;
  top: 8px;
  left: 10px;
  width: 20px;
  height: 20px;
  border: 1px solid #91a38e;
  border-radius: 50%;
}

.hvac span::before,
.hvac span::after {
  position: absolute;
  inset: 8px 2px;
  content: "";
  background: #91a38e;
  border-radius: 3px;
  transform: rotate(45deg);
}

.hvac span::after {
  transform: rotate(-45deg);
}

.appliance-info {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.appliance-info strong {
  overflow: hidden;
  font-size: 12px;
  letter-spacing: -.01em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.appliance-info small {
  color: var(--muted);
  font-size: 9px;
}

.status {
  width: max-content;
  padding: 3px 6px;
  border-radius: 999px;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .02em;
}

.status-good {
  color: #2d6752;
  background: #daf0e2;
}

.status-due {
  color: #8b5a16;
  background: var(--amber-pale);
}

.status-neutral {
  color: #526660;
  background: #edf0ee;
}

.chevron {
  color: #9eaaa5;
  font-size: 20px;
}

.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  min-width: 192px;
  padding: 13px 15px;
  gap: 10px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(23, 51, 44, .1);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.floating-note > span:last-child {
  display: grid;
  gap: 1px;
}

.floating-note strong {
  font-size: 11px;
}

.floating-note small {
  color: var(--muted);
  font-size: 9px;
}

.note-warranty {
  top: 18%;
  right: -2%;
  transform: rotate(2deg);
}

.note-export {
  bottom: 12%;
  left: -6%;
  transform: rotate(-3deg);
}

.note-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  color: var(--green);
  background: var(--mint-pale);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 900;
}

.note-icon-paper {
  color: #8f5d1b;
  background: var(--amber-pale);
}

.proof-band {
  color: var(--ink-2);
  background: #e9efe9;
  border-block: 1px solid #dce6de;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 86px;
  align-items: center;
}

.proof-grid span {
  padding-inline: 20px;
  font-size: 13px;
  font-weight: 750;
  text-align: center;
}

.proof-grid span + span {
  border-left: 1px solid #cad9cf;
}

.section {
  padding-block: 116px;
}

.section-heading {
  max-width: 710px;
  margin-bottom: 46px;
}

h2 {
  margin: 0;
  font-size: clamp(38px, 5.2vw, 60px);
  font-weight: 750;
  letter-spacing: -.045em;
  line-height: 1.03;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 34px;
  background: var(--white);
  border: 1px solid rgba(23, 51, 44, .1);
  border-radius: var(--radius);
  box-shadow: 0 2px 0 rgba(255, 255, 255, .8) inset;
}

.feature-card-wide {
  display: grid;
  grid-template-columns: 1fr minmax(260px, .8fr);
  align-items: center;
  min-height: 330px;
  grid-column: 1 / -1;
  gap: 50px;
}

.feature-number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: #94a49e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
}

.feature-card h3 {
  max-width: 510px;
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -.035em;
  line-height: 1.08;
}

.feature-card p {
  max-width: 520px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.detail-ticket {
  padding: 18px 20px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  transform: rotate(1.5deg);
}

.ticket-label {
  display: block;
  margin-bottom: 12px;
  color: var(--green-2);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .09em;
}

.detail-ticket div {
  display: flex;
  justify-content: space-between;
  padding-block: 8px;
  gap: 20px;
  border-top: 1px solid #d6ddd7;
  font-size: 12px;
}

.detail-ticket div span {
  color: var(--muted);
}

.detail-ticket div strong {
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 11px;
}

.document-stack {
  position: absolute;
  right: 32px;
  bottom: 30px;
  left: 32px;
  display: grid;
  gap: 8px;
}

.document-stack span {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 12px 14px;
  gap: 12px;
  color: var(--ink-2);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 13px;
  font-size: 12px;
  font-weight: 700;
}

.document-stack b {
  display: grid;
  place-items: center;
  width: 35px;
  height: 28px;
  color: var(--green);
  background: var(--mint-pale);
  border-radius: 7px;
  font-size: 8px;
  letter-spacing: .04em;
}

.dark-card {
  color: var(--white);
  background: var(--green-dark);
  border-color: transparent;
}

.dark-card .feature-number {
  color: #7d9f93;
}

.dark-card p {
  color: #b7cbc4;
}

.mini-timeline {
  position: absolute;
  right: 34px;
  bottom: 29px;
  left: 34px;
  display: grid;
  padding: 0;
  margin: 0;
  gap: 18px;
  list-style: none;
}

.mini-timeline li {
  display: grid;
  grid-template-columns: 13px 1fr;
  align-items: start;
  gap: 12px;
}

.mini-timeline li > span {
  position: relative;
  width: 11px;
  height: 11px;
  margin-top: 3px;
  background: var(--mint);
  border: 3px solid #477265;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--mint);
}

.mini-timeline li:not(:last-child) > span::after {
  position: absolute;
  top: 13px;
  left: 2px;
  width: 1px;
  height: 36px;
  content: "";
  background: #46685f;
}

.mini-timeline div {
  display: grid;
  gap: 2px;
}

.mini-timeline strong {
  font-size: 13px;
}

.mini-timeline small {
  color: #9fb8b0;
  font-size: 10px;
}

.reminder-card {
  background: #f5eee1;
}

.calendar-chip {
  display: grid;
  justify-self: center;
  width: 172px;
  padding: 18px 22px 21px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #e6d8bf;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transform: rotate(2.5deg);
}

.calendar-chip span {
  color: #a56c25;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .14em;
}

.calendar-chip strong {
  margin: 1px 0;
  font-size: 58px;
  letter-spacing: -.06em;
  line-height: 1;
}

.calendar-chip small {
  padding-top: 11px;
  color: var(--muted);
  border-top: 1px solid #ede4d6;
  font-size: 10px;
  font-weight: 700;
}

.privacy-section {
  padding-block: 112px;
  color: var(--white);
  background: var(--green-dark);
}

.privacy-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 90px;
}

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

.privacy-lede {
  max-width: 580px;
  margin: 24px 0;
  color: #b9cdc5;
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 750;
  text-underline-offset: 4px;
}

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

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

.privacy-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  padding: 21px;
  gap: 14px;
  background: rgba(255, 255, 255, .065);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 18px;
}

.privacy-badge {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--mint);
  background: rgba(207, 232, 217, .11);
  border-radius: 13px;
  font-size: 12px;
  font-weight: 850;
}

.privacy-list h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -.02em;
}

.privacy-list p {
  margin: 4px 0 0;
  color: #afc5bd;
  font-size: 14px;
}

.pricing-section {
  padding-bottom: 70px;
}

.price-card {
  display: grid;
  grid-template-columns: 1fr 340px;
  align-items: center;
  padding: clamp(34px, 6vw, 68px);
  gap: 65px;
  background: var(--white);
  border: 1px solid rgba(23, 51, 44, .1);
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
}

.price-card h2 {
  font-size: clamp(35px, 4.7vw, 54px);
}

.price-card > div:first-child > p:last-child {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.price-promise {
  display: grid;
  padding: 27px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.price-promise strong {
  font-size: 18px;
}

.price-promise span {
  color: var(--muted);
  font-size: 13px;
}

.price-promise hr {
  width: 100%;
  margin: 20px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.price-promise small {
  width: max-content;
  padding: 5px 8px;
  margin-top: 17px;
  color: #2f6553;
  background: #dceee3;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}

.final-cta {
  padding-top: 35px;
}

.final-cta-inner {
  padding: 78px 30px;
  text-align: center;
  background:
    radial-gradient(circle at 12% 10%, rgba(207, 232, 217, .74), transparent 28%),
    radial-gradient(circle at 90% 90%, rgba(255, 224, 178, .62), transparent 28%),
    #edf2ec;
  border: 1px solid #d7e2da;
  border-radius: 34px;
}

.final-cta-inner h2 {
  max-width: 790px;
  margin-inline: auto;
}

.final-cta-inner > p:nth-of-type(2) {
  margin: 20px 0 27px;
  color: var(--muted);
  font-size: 18px;
}

.site-footer {
  padding-block: 46px;
  color: #b2c4be;
  background: #0d241f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 50px;
}

.footer-brand {
  color: var(--white);
}

.footer-grid > div > p {
  margin: 12px 0 0;
  font-size: 13px;
}

.footer-grid nav {
  display: grid;
  gap: 8px;
}

.footer-grid nav a {
  color: #c3d1cc;
  font-size: 13px;
  text-decoration: none;
}

.footer-grid nav a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.copyright {
  margin: 0;
  font-size: 12px;
  text-align: right;
}

/* Content pages */

.content-hero {
  padding-block: 88px 65px;
  border-bottom: 1px solid var(--line);
}

.content-hero-inner {
  max-width: 820px;
}

.content-hero h1 {
  font-size: clamp(46px, 6vw, 70px);
}

.content-hero .lede {
  max-width: 750px;
}

.content-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 730px);
  justify-content: center;
  padding-block: 68px 110px;
  gap: 76px;
}

.toc {
  position: sticky;
  top: 104px;
  align-self: start;
  display: grid;
  padding: 20px;
  gap: 9px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.toc strong {
  margin-bottom: 4px;
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.toc a {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

.toc a:hover {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose {
  min-width: 0;
}

.prose section {
  padding-block: 5px 33px;
  scroll-margin-top: 100px;
}

.prose section + section {
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.prose h2 {
  margin-bottom: 16px;
  font-size: clamp(27px, 3vw, 35px);
  letter-spacing: -.035em;
}

.prose h3 {
  margin: 25px 0 8px;
  font-size: 19px;
  letter-spacing: -.02em;
}

.prose p,
.prose li {
  color: #4e645d;
  font-size: 16px;
}

.prose ul,
.prose ol {
  padding-left: 22px;
}

.prose li + li {
  margin-top: 8px;
}

.prose a {
  color: var(--green);
  font-weight: 650;
  text-underline-offset: 3px;
}

.summary-box,
.notice-box,
.contact-card {
  padding: 24px;
  margin-bottom: 36px;
  background: var(--mint-pale);
  border: 1px solid #cee0d4;
  border-radius: 18px;
}

.summary-box strong,
.notice-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.summary-box ul {
  margin-bottom: 0;
}

.placeholder-notice {
  color: #76501f;
  background: var(--amber-pale);
  border-color: #edd3a9;
}

.placeholder-notice p {
  margin: 0;
  color: #76501f;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 28px 0 40px;
  gap: 14px;
}

.contact-card {
  min-height: 150px;
  margin: 0;
  background: var(--white);
}

.contact-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-card strong,
.contact-card a {
  overflow-wrap: anywhere;
  font-size: 17px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 19px 21px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 15px;
}

.faq-list details[open] {
  border-color: #bed1c5;
  box-shadow: var(--shadow-soft);
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 750;
}

.faq-list details p {
  margin: 13px 0 2px;
  color: var(--muted);
}

.support-shell {
  max-width: 880px;
  padding-block: 70px 110px;
}

.support-shell > section {
  scroll-margin-top: 100px;
}

.support-shell > section + section {
  padding-top: 60px;
}

.support-shell h2 {
  margin-bottom: 24px;
  font-size: clamp(30px, 4vw, 42px);
}

.support-intro {
  color: var(--muted);
  font-size: 17px;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 72px;
    gap: 35px;
  }

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

  .product-visual {
    min-height: 620px;
  }

  .phone-card {
    width: 390px;
  }

  .note-warranty {
    right: 8%;
  }

  .note-export {
    left: 8%;
  }

  .privacy-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .price-card {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .content-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .toc {
    position: static;
    grid-template-columns: repeat(3, 1fr);
  }

  .toc strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .nav-wrap {
    min-height: 66px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a:first-child,
  .nav-links a:nth-child(2) {
    display: none;
  }

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

  h1 {
    font-size: clamp(45px, 13vw, 66px);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .trust-list {
    gap: 12px 16px;
  }

  .product-visual {
    min-height: 535px;
    margin-inline: -5px;
  }

  .phone-card {
    width: min(360px, 93%);
    padding-inline: 17px;
  }

  .floating-note {
    min-width: 170px;
    padding: 10px 12px;
  }

  .note-warranty {
    top: 14%;
    right: -1%;
  }

  .note-export {
    bottom: 7%;
    left: -1%;
  }

  .proof-grid {
    grid-template-columns: 1fr 1fr;
    padding-block: 10px;
  }

  .proof-grid span {
    padding-block: 13px;
  }

  .proof-grid span + span {
    border-left: 0;
  }

  .section,
  .privacy-section {
    padding-block: 78px;
  }

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

  .feature-card,
  .feature-card-wide {
    grid-column: auto;
    min-height: 420px;
    padding: 28px;
  }

  .feature-card-wide {
    display: block;
  }

  .detail-ticket {
    position: absolute;
    right: 27px;
    bottom: 27px;
    left: 27px;
  }

  .calendar-chip {
    position: absolute;
    right: 35px;
    bottom: 27px;
  }

  .price-card {
    padding: 33px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 29px;
  }

  .copyright {
    text-align: left;
  }

  .content-hero {
    padding-block: 64px 48px;
  }

  .content-layout {
    padding-block: 45px 80px;
  }

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

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

@media (max-width: 430px) {
  .brand > span:last-child {
    font-size: 15px;
  }

  .product-visual {
    min-height: 500px;
  }

  .phone-card {
    transform: none;
  }

  .floating-note {
    display: none;
  }

  .feature-card,
  .feature-card-wide {
    min-height: 440px;
  }

  .proof-grid span {
    font-size: 11px;
  }

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

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

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

@media print {
  .site-header,
  .site-footer,
  .toc,
  .skip-link {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .content-layout {
    display: block;
    padding: 0;
  }

  .prose p,
  .prose li {
    color: #222;
  }

  a {
    color: #000 !important;
  }
}

