:root {
  color-scheme: light dark;
  --paper: #f7f2e6;
  --paper-soft: #fbf8f0;
  --card: rgba(255, 253, 247, 0.88);
  --card-solid: #fffdf7;
  --ink: #20241f;
  --muted: #6e756d;
  --sage: #5f9364;
  --sage-deep: #3f7048;
  --sage-soft: #dfeadc;
  --peach: #eaa486;
  --gold: #dda841;
  --line: rgba(63, 83, 57, 0.14);
  --header: rgba(247, 242, 230, 0.84);
  --shadow: 0 28px 80px rgba(72, 76, 56, 0.14);
  --shadow-soft: 0 16px 44px rgba(72, 76, 56, 0.09);
  --content: 1120px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #13222b;
    --paper-soft: #182a31;
    --card: rgba(28, 44, 47, 0.9);
    --card-solid: #1c2c2f;
    --ink: #f2f0e8;
    --muted: #aab4af;
    --sage: #82b888;
    --sage-deep: #9bc9a0;
    --sage-soft: #263e35;
    --peach: #df997b;
    --gold: #d7ad52;
    --line: rgba(198, 218, 202, 0.14);
    --header: rgba(19, 34, 43, 0.84);
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
    --shadow-soft: 0 16px 44px rgba(0, 0, 0, 0.2);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 13%, rgba(234, 164, 134, 0.12), transparent 25rem),
    radial-gradient(circle at 88% 22%, rgba(95, 147, 100, 0.14), transparent 30rem),
    var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  color: #fff;
  background: var(--sage-deep);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid transparent;
  background: var(--header);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  width: min(var(--content), calc(100% - 2.5rem));
  min-height: 72px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--ink);
  font-weight: 750;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 5px 14px rgba(63, 112, 72, 0.16);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--sage-deep);
}

.nav-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--sage-deep);
  background: var(--card);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-status::before {
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.page-home {
  overflow-x: hidden;
}

.hero {
  position: relative;
  display: grid;
  width: min(var(--content), calc(100% - 2.5rem));
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) 0 clamp(5rem, 9vw, 9rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  content: "";
}

.hero::before {
  top: 15%;
  right: -24%;
  width: 42rem;
  height: 42rem;
  border: 1px solid rgba(95, 147, 100, 0.22);
}

.hero::after {
  right: -4%;
  bottom: 8%;
  width: 9rem;
  height: 9rem;
  background: rgba(223, 168, 65, 0.12);
  filter: blur(1px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1.25rem;
  color: var(--sage-deep);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.45rem, 5vw, 4rem);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 1.12;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-lead {
  max-width: 39rem;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.5vw, 1.18rem);
  line-height: 2;
}

.hero-actions {
  display: flex;
  margin-top: 2.2rem;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.3rem;
}

.store-status {
  display: inline-flex;
  min-height: 52px;
  padding: 0.72rem 1.35rem;
  align-items: center;
  gap: 0.7rem;
  border-radius: 14px;
  color: #fff;
  background: var(--sage-deep);
  box-shadow: 0 12px 28px rgba(63, 112, 72, 0.22);
  font-weight: 730;
}

.store-status::before {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #f3ce7d;
  box-shadow: 0 0 0 5px rgba(243, 206, 125, 0.14);
  content: "";
}

.quiet-link {
  color: var(--muted);
  font-size: 0.92rem;
  text-underline-offset: 0.28rem;
}

.quiet-link:hover,
.quiet-link:focus-visible {
  color: var(--sage-deep);
}

.hero-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone {
  position: relative;
  width: min(360px, 82vw);
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 51px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
}

@media (prefers-color-scheme: dark) {
  .phone {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
  }
}

.phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 44px;
}

.hero-vine {
  position: absolute;
  top: 4%;
  right: -8%;
  z-index: -1;
  width: 56%;
  height: auto;
  color: var(--sage);
  opacity: 0.42;
}

.section {
  width: min(var(--content), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(5.5rem, 10vw, 9rem) 0;
}

.section-heading {
  max-width: 45rem;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.section h2,
.legal-shell h1 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: -0.045em;
  line-height: 1.25;
  text-wrap: balance;
}

.section-title-line {
  display: block;
  white-space: nowrap;
}

.section-intro {
  max-width: 44rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 2;
}

.belief {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.belief-statement {
  position: relative;
  margin: 0;
  padding-left: 1.45rem;
  color: var(--ink);
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  font-weight: 680;
  letter-spacing: -0.025em;
  line-height: 1.55;
}

.belief-statement-line {
  display: block;
  white-space: nowrap;
}

.belief h2 {
  font-size: clamp(2.65rem, 4.5vw, 3.45rem);
  line-height: 1.22;
}

.belief-title-line {
  display: block;
  white-space: nowrap;
}

.belief-statement::before {
  position: absolute;
  top: 0.35rem;
  bottom: 0.35rem;
  left: 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(var(--sage), var(--gold));
  content: "";
}

.belief-copy p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  line-height: 2.05;
}

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

.features {
  display: grid;
  gap: clamp(6rem, 12vw, 10rem);
}

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

.feature-row:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
}

.feature-row:nth-child(even) .feature-visual {
  order: 2;
}

.feature-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.feature-visual::before {
  position: absolute;
  top: 7%;
  right: 0;
  bottom: 7%;
  left: 0;
  z-index: -1;
  border-radius: 42% 58% 55% 45% / 45% 42% 58% 55%;
  background: rgba(95, 147, 100, 0.12);
  content: "";
  transform: rotate(-4deg) scale(1.08);
}

.feature-row:nth-child(2) .feature-visual::before {
  background: rgba(234, 164, 134, 0.14);
  transform: rotate(4deg) scale(1.08);
}

.shot-frame {
  width: min(370px, 84vw);
  max-height: 650px;
  padding: 7px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 45px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
}

.shot-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 38px;
}

.feature-number {
  display: inline-grid;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 1.4rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--sage-deep);
  background: var(--card);
  font-size: 0.8rem;
  font-weight: 780;
}

.feature-copy h3 {
  max-width: 15em;
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3.25rem);
  letter-spacing: -0.04em;
  line-height: 1.35;
  text-wrap: balance;
}

.feature-title-line {
  display: block;
  white-space: nowrap;
}

.feature-copy p {
  max-width: 38rem;
  margin: 1.4rem 0 0;
  color: var(--muted);
  line-height: 2;
}

.feature-note {
  display: inline-flex;
  margin-top: 1.4rem;
  padding: 0.5rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--sage-deep);
  background: var(--card);
  font-size: 0.78rem;
  font-weight: 680;
}

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

.audience-item {
  position: relative;
  display: flex;
  min-height: 132px;
  padding: 1.7rem 1.8rem 1.7rem 4rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  color: var(--ink);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  font-size: clamp(1.08rem, 1.45vw, 1.25rem);
  font-weight: 630;
  letter-spacing: -0.01em;
  line-height: 1.65;
}

.audience-item::before {
  position: absolute;
  top: 50%;
  left: 1.8rem;
  width: 0.78rem;
  height: 0.78rem;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0.9rem 0.65rem 0 -0.18rem var(--gold);
  content: "";
  transform: translateY(-50%);
}

.privacy-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 5rem);
  border-radius: 38px;
  color: #f6f4ec;
  background:
    radial-gradient(circle at 85% 20%, rgba(223, 168, 65, 0.18), transparent 22rem),
    linear-gradient(135deg, #365b42, #29483b);
  box-shadow: var(--shadow);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 7vw, 6rem);
}

.privacy-panel h2 {
  color: #fff;
}

.privacy-panel .section-kicker {
  color: #cfe3ce;
}

.privacy-copy {
  align-self: center;
}

.privacy-copy p {
  margin: 0 0 1.2rem;
  color: rgba(246, 244, 236, 0.82);
  line-height: 2;
}

.privacy-copy a {
  color: #fff;
  font-weight: 680;
  text-underline-offset: 0.28rem;
}

.plan-note {
  display: grid;
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--card);
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: center;
}

.plan-note h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
}

.plan-note p {
  margin: 0;
  color: var(--muted);
  line-height: 2;
}

.closing {
  padding-top: clamp(4rem, 8vw, 7rem);
  text-align: center;
}

.closing p {
  margin: 1.3rem auto 0;
  color: var(--muted);
}

.site-footer {
  width: min(var(--content), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 2.5rem 0 3.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.footer-links a {
  text-underline-offset: 0.25rem;
}

/* Support and privacy pages */
.legal-page {
  min-height: 100vh;
}

.legal-shell {
  width: min(760px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.legal-shell h1 {
  margin-bottom: 0.4rem;
  font-size: clamp(2.25rem, 5vw, 3.6rem);
}

.legal-shell h2 {
  margin: 3.3rem 0 0.9rem;
  font-size: 1.38rem;
  letter-spacing: -0.02em;
  line-height: 1.5;
}

.legal-shell h3 {
  margin: 2rem 0 0.65rem;
  font-size: 1.08rem;
}

.legal-shell p,
.legal-shell li {
  color: var(--muted);
}

.legal-shell strong {
  color: var(--ink);
}

.legal-shell a {
  color: var(--sage-deep);
  text-underline-offset: 0.25rem;
}

.legal-shell ul {
  padding-left: 1.3rem;
}

.legal-shell li {
  margin: 0.55rem 0;
}

.legal-meta {
  margin: 0 0 3rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.legal-lead {
  padding: 1.6rem 1.8rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.legal-divider {
  height: 1px;
  margin: 3rem 0;
  border: 0;
  background: var(--line);
}

.legal-note {
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .site-nav a:not(.nav-status) {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .hero-lead {
    max-width: 36rem;
  }

  .hero-visual {
    margin-top: 1rem;
  }

  .hero-vine {
    right: -18%;
    width: 78%;
  }

  .belief,
  .privacy-panel,
  .plan-note {
    grid-template-columns: 1fr;
  }

  .feature-row,
  .feature-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .feature-row:nth-child(even) .feature-visual {
    order: 0;
  }

  .feature-copy {
    max-width: 40rem;
    margin: 0 auto;
    text-align: center;
  }

  .feature-copy h3 {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 620px) {
  .nav-shell,
  .hero,
  .section,
  .site-footer,
  .legal-shell {
    width: min(100% - 1.5rem, var(--content));
  }

  .nav-shell {
    min-height: 64px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .brand {
    font-size: 0.92rem;
  }

  .nav-status {
    padding: 0.42rem 0.68rem;
    font-size: 0.72rem;
  }

  .hero {
    padding-top: 3.5rem;
    gap: 3rem;
  }

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

  .hero-lead br {
    display: none;
  }

  .section {
    padding: 5.5rem 0;
  }

  .section-heading {
    margin-bottom: 3.2rem;
  }

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

  .privacy-panel {
    padding: 2.2rem 1.4rem;
    border-radius: 28px;
  }

  .plan-note {
    padding: 2rem 1.4rem;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-shell {
    padding-top: 3.5rem;
  }

  .section h2 {
    font-size: 1.9rem;
  }

  .belief h2 {
    font-size: 2.55rem;
  }

  .audience-item {
    min-height: 108px;
    padding: 1.4rem 1.3rem 1.4rem 3.4rem;
    font-size: 1.05rem;
  }

  .audience-item::before {
    left: 1.4rem;
  }

  .legal-lead {
    padding: 1.35rem;
  }
}

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

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