:root {
  color-scheme: light;
  --background: #f7f2e3;
  --background-soft: #fbf8ef;
  --card: #fcfaf2;
  --green: #1a4f2e;
  --accent: #21753d;
  --accent-dark: #17552d;
  --muted: #5c6b59;
  --border: rgb(26 79 46 / 14%);
  --wash: rgb(33 117 61 / 9%);
  --warning: #a65300;
  --danger: #a22b21;
  --shadow: 0 18px 52px rgb(26 79 46 / 9%);
  --font-display: ui-serif, "New York", "Iowan Old Style", Georgia, serif;
  --font-body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: clip;
  overflow-wrap: break-word;
  background:
    radial-gradient(circle at 9% 2%, rgb(33 117 61 / 8%), transparent 28rem),
    var(--background);
  color: var(--green);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent-dark);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent);
}

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

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid var(--border);
  background: rgb(247 242 227 / 92%);
  backdrop-filter: blur(18px);
}

.header-inner,
.footer-inner,
.container {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

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

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 11px;
  color: var(--green);
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  box-shadow: 0 5px 14px rgb(26 79 46 / 18%);
}

.brand span {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--wash);
  color: var(--green);
}

main {
  min-height: calc(100vh - 220px);
}

.hero {
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: clamp(44px, 7vw, 92px);
  padding-block: clamp(64px, 9vw, 112px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card);
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--font-display);
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 70px);
  letter-spacing: -0.045em;
  line-height: 1.01;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}

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

.centered-actions {
  justify-content: center;
}

.button,
button.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 14px;
  font: inherit;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgb(33 117 61 / 20%);
}

.button-primary:hover {
  background: var(--accent-dark);
  color: #fff;
}

.button-secondary {
  border-color: var(--border);
  background: var(--card);
  color: var(--green);
}

.button-secondary:hover {
  background: var(--wash);
  color: var(--green);
}

.button[aria-disabled="true"] {
  cursor: default;
  opacity: 0.78;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.hero-note svg {
  flex: 0 0 auto;
}

.app-preview-wrap {
  position: relative;
  isolation: isolate;
}

.app-preview-wrap::before {
  position: absolute;
  z-index: -1;
  inset: 9% -8% -8% 12%;
  border-radius: 52px;
  background: rgb(33 117 61 / 12%);
  filter: blur(1px);
  content: "";
  transform: rotate(4deg);
}

.app-preview {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.preview-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.preview-title img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgb(26 79 46 / 18%);
}

.preview-title strong {
  display: block;
  font-family: var(--font-display);
  font-size: 25px;
}

.preview-title span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.avatar-stack {
  display: flex;
}

.avatar {
  display: grid;
  width: 34px;
  height: 34px;
  margin-left: -8px;
  place-items: center;
  border: 2px solid var(--card);
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.avatar:first-child {
  margin-left: 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.stat {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: var(--background-soft);
}

.stat strong,
.stat span {
  display: block;
}

.stat strong {
  margin-bottom: 3px;
  font-family: var(--font-display);
  font-size: 27px;
  line-height: 1;
}

.stat span {
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-list {
  display: grid;
  gap: 10px;
}

.preview-row {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 13px;
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: #fffdf8;
}

.preview-icon,
.feature-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  background: var(--wash);
  color: var(--accent-dark);
}

.preview-icon {
  width: 40px;
  height: 40px;
}

.preview-row strong,
.preview-row span {
  display: block;
}

.preview-row strong {
  font-size: 15px;
}

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

.preview-count {
  margin-left: auto;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.section {
  padding-block: clamp(54px, 8vw, 88px);
}

.section-tint {
  border-block: 1px solid var(--border);
  background: rgb(252 250 242 / 58%);
}

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

.section-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(34px, 4.5vw, 50px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

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

.feature-card,
.content-card,
.callout-card {
  border: 1px solid var(--border);
  border-radius: 21px;
  background: var(--card);
  box-shadow: 0 10px 30px rgb(26 79 46 / 5%);
}

.feature-card {
  padding: 23px;
}

.feature-icon {
  width: 45px;
  height: 45px;
  margin-bottom: 19px;
}

.feature-card h3 {
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-size: 18px;
  letter-spacing: -0.01em;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.privacy-banner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 28px;
}

.privacy-mark {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 17px;
  background: var(--green);
  color: #fff;
}

.privacy-banner h2 {
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-size: 21px;
}

.privacy-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.page-hero {
  padding-block: clamp(58px, 9vw, 94px) 44px;
}

.page-hero h1 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(42px, 5vw, 57px);
  line-height: 1.04;
}

.page-hero > p:not(.eyebrow) {
  max-width: 710px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.meta {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 720px);
  align-items: start;
  justify-content: space-between;
  gap: 64px;
  padding-bottom: 88px;
}

.contents {
  position: sticky;
  top: 98px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: rgb(252 250 242 / 75%);
}

.contents strong {
  display: block;
  margin-bottom: 9px;
  font-size: 14px;
}

.contents ol {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 13px;
}

.contents li + li {
  margin-top: 7px;
}

.contents a {
  color: inherit;
  text-decoration: none;
}

.contents a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.legal-copy {
  max-width: 68ch;
}

.legal-copy section {
  scroll-margin-top: 104px;
  padding-top: 6px;
}

.legal-copy section + section {
  margin-top: 42px;
  padding-top: 42px;
  border-top: 1px solid var(--border);
}

.legal-copy h2 {
  margin-bottom: 13px;
  font-size: 29px;
  letter-spacing: -0.02em;
}

.legal-copy h3 {
  margin: 28px 0 8px;
  font-family: var(--font-body);
  font-size: 18px;
}

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

.legal-copy ul {
  padding-left: 23px;
}

.legal-copy li + li {
  margin-top: 9px;
}

.legal-copy a {
  font-weight: 650;
}

.notice {
  margin: 24px 0;
  padding: 16px 18px;
  border-left: 4px solid var(--accent);
  border-radius: 4px 14px 14px 4px;
  background: var(--wash);
  color: #354536;
}

.support-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: 26px;
  padding-bottom: 88px;
}

.support-contact {
  position: sticky;
  top: 100px;
  padding: 26px;
}

.support-contact h2 {
  margin-bottom: 8px;
  font-size: 28px;
}

.support-contact p {
  margin: 0 0 20px;
  color: var(--muted);
}

.support-email {
  display: block;
  margin-top: 12px;
  font-size: 15px;
  font-weight: 700;
}

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

details {
  border: 1px solid var(--border);
  border-radius: 17px;
  background: var(--card);
  box-shadow: 0 8px 24px rgb(26 79 46 / 4%);
}

summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px;
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  flex: 0 0 auto;
  color: var(--accent);
  content: "+";
  font-size: 25px;
  font-weight: 450;
  line-height: 1;
}

details[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 18px 18px;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
}

.fallback-page {
  display: grid;
  min-height: calc(100vh - 151px);
  place-items: center;
  padding-block: 56px;
}

.fallback-card {
  width: min(580px, 100%);
  padding: clamp(28px, 5vw, 44px);
  text-align: center;
}

.fallback-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 22px;
  border-radius: 21px;
  box-shadow: 0 10px 28px rgb(26 79 46 / 20%);
}

.fallback-symbol {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  place-items: center;
  border-radius: 21px;
  background: var(--wash);
  color: var(--accent-dark);
}

.fallback-card h1 {
  margin-bottom: 13px;
  font-size: clamp(34px, 6vw, 44px);
  letter-spacing: -0.035em;
}

.fallback-card > p {
  margin: 0 auto;
  color: var(--muted);
}

.token-panel {
  display: none;
  margin-top: 24px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--background-soft);
  text-align: left;
}

.token-panel[data-visible="true"] {
  display: block;
}

.token-panel p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.token-code {
  display: block;
  overflow: hidden;
  margin-bottom: 13px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgb(33 117 61 / 8%);
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status-message {
  min-height: 22px;
  margin-top: 11px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 650;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: rgb(252 250 242 / 50%);
}

.footer-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a {
  color: inherit;
}

@media (max-width: 900px) {
  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

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

  .app-preview-wrap {
    width: min(620px, 100%);
    margin-inline: auto;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contents {
    position: static;
  }

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

  .support-contact {
    position: static;
  }
}

@media (max-width: 660px) {
  .header-inner,
  .footer-inner,
  .container {
    width: min(100% - 40px, 1120px);
  }

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

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

  .brand span {
    font-size: 27px;
  }

  .site-nav a:not([data-primary-nav]) {
    display: none;
  }

  .site-nav a {
    padding-inline: 10px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 60px);
  }

  .hero {
    gap: 48px;
    padding-block: 54px 66px;
  }

  .app-preview {
    padding: 17px;
    border-radius: 24px;
  }

  .preview-title img {
    width: 52px;
    height: 52px;
    border-radius: 13px;
  }

  .preview-title strong {
    font-size: 22px;
  }

  .avatar:nth-child(2) {
    display: none;
  }

  .stats {
    gap: 7px;
  }

  .stat {
    padding: 11px 9px;
  }

  .stat strong {
    font-size: 23px;
  }

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

  .privacy-banner {
    grid-template-columns: auto 1fr;
  }

  .privacy-banner .button {
    grid-column: 1 / -1;
  }

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

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

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

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

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

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

  .legal-layout {
    display: block;
  }
}
