:root {
  --paper: #fffaf0;
  --paper-strong: #fff4df;
  --ink: #24483a;
  --muted: #66766e;
  --line: rgba(72, 101, 84, 0.18);
  --green: #4b8f68;
  --green-deep: #2f6f52;
  --orange: #b65b22;
  --rose: #b6574f;
  --shadow: 0 22px 70px rgba(63, 85, 64, 0.16);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-rounded, -apple-system, BlinkMacSystemFont, "SF Pro Rounded", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 6%, rgba(147, 186, 133, 0.22), transparent 30rem),
    radial-gradient(circle at 88% 15%, rgba(246, 190, 110, 0.18), transparent 28rem),
    linear-gradient(180deg, #fffdf5 0%, #fff7ea 48%, #f6fbef 100%);
  color: var(--ink);
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0;
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(52, 73, 55, 0.16);
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a,
.language a,
.button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  color: var(--ink);
}

.nav a {
  color: rgba(36, 72, 58, 0.78);
}

.nav a:hover,
.language a:hover {
  background: rgba(255, 255, 255, 0.72);
}

.language {
  display: flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
}

.language a[aria-current="page"] {
  background: #fff;
  color: var(--green-deep);
  box-shadow: 0 5px 16px rgba(70, 98, 78, 0.12);
}

.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  border: 1px solid rgba(91, 130, 97, 0.20);
  border-radius: 28px;
  min-height: clamp(460px, 50vw, 620px);
  display: grid;
  align-items: center;
  padding: clamp(28px, 6vw, 78px);
  background:
    radial-gradient(circle at 18% 18%, rgba(87, 151, 105, 0.16), transparent 24rem),
    radial-gradient(circle at 82% 20%, rgba(238, 174, 91, 0.18), transparent 22rem),
    radial-gradient(circle at 72% 86%, rgba(181, 216, 150, 0.22), transparent 26rem),
    linear-gradient(135deg, rgba(255, 255, 250, 0.94), rgba(255, 246, 226, 0.86));
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero-overlay {
  position: relative;
  width: min(760px, 100%);
  display: grid;
  gap: 18px;
  z-index: 1;
}

.hero-copy {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-icon {
  width: 86px;
  height: 86px;
  border-radius: 24px;
  margin-bottom: 20px;
  box-shadow: 0 18px 40px rgba(67, 88, 63, 0.18);
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--orange);
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 10px;
  font-size: clamp(2.4rem, 8vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 7vw, 5.6rem);
  max-width: 780px;
}

.lede {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.6;
  font-weight: 650;
}

.button-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.hero-badges span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(75, 143, 104, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--green-deep);
  font-weight: 900;
}

.button {
  border: 1px solid transparent;
  background: var(--green-deep);
  color: #fff;
}

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

main {
  overflow: hidden;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 84px auto;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-header h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.04;
}

.section-header p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.6;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.stat,
.card,
.notice,
.doc-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 40px rgba(66, 87, 65, 0.10);
}

.stat {
  padding: 20px;
}

.stat strong {
  display: block;
  color: var(--green-deep);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

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

.card {
  padding: 22px;
}

.card h3 {
  font-size: 1.32rem;
  margin-bottom: 8px;
}

.card p,
.doc-card p,
.notice p,
.legal p,
.legal li {
  color: var(--muted);
  line-height: 1.65;
  font-weight: 600;
}

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

.shot-card {
  border-radius: 26px;
  overflow: hidden;
  background: #fff8ec;
  border: 1px solid rgba(148, 110, 62, 0.14);
  box-shadow: var(--shadow);
}

.shot-card img {
  width: 100%;
  aspect-ratio: 852 / 1846;
  object-fit: cover;
}

.shot-card.ja img {
  aspect-ratio: 1290 / 2796;
}

.fine-print {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}

.notice {
  padding: clamp(22px, 4vw, 34px);
}

.notice h2 {
  font-size: clamp(1.7rem, 4vw, 3rem);
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(75, 143, 104, 0.16);
  color: var(--green-deep);
}

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

.doc-card {
  padding: 22px;
  text-decoration: none;
}

.doc-card:hover {
  transform: translateY(-2px);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 0 42px;
  background: rgba(255, 255, 255, 0.34);
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.legal-shell {
  width: min(860px, calc(100% - 32px));
  margin: 64px auto 90px;
}

.legal {
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.legal h1 {
  font-size: clamp(2.2rem, 7vw, 4.4rem);
}

.legal h2 {
  margin-top: 32px;
}

.contact-box {
  padding: 18px;
  border-radius: 16px;
  background: rgba(75, 143, 104, 0.10);
}

.lang-chooser {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.chooser-card {
  max-width: 720px;
  padding: clamp(26px, 5vw, 52px);
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  text-align: center;
}

.chooser-card img {
  width: 86px;
  height: 86px;
  border-radius: 24px;
  margin: 0 auto 18px;
}

.chooser-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero {
    min-height: 520px;
  }

  .hero-overlay {
    width: auto;
  }

  .stats,
  .feature-grid,
  .shot-grid,
  .fine-print,
  .docs-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    display: block;
  }

  .section-header p {
    margin-top: 12px;
  }
}

@media (max-width: 560px) {
  .nav a[href="#features"],
  .nav a[href="#screens"] {
    display: none;
  }

  .language a {
    padding: 0 10px;
  }

  .hero {
    width: calc(100% - 18px);
    border-radius: 20px;
  }

  .section {
    margin: 58px auto;
  }
}
