:root {
  --green-950: #183932;
  --green-900: #244b43;
  --green-800: #355c52;
  --green-700: #47756a;
  --mint-200: #dcece7;
  --mint-100: #edf6f3;
  --cream-50: #fdfbf6;
  --cream-100: #f7f3ea;
  --cream-200: #eee6d8;
  --gold-500: #c99145;
  --gold-300: #e4bf88;
  --ink: #203a34;
  --muted: #60736e;
  --white: #ffffff;
  --line: rgba(36, 75, 67, 0.13);
  --shadow-sm: 0 12px 35px rgba(36, 75, 67, 0.08);
  --shadow-lg: 0 34px 90px rgba(36, 75, 67, 0.16);
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 40px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream-50);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(201, 145, 69, 0.55);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 12px;
  background: var(--green-950);
  color: var(--white);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(36, 75, 67, 0.08);
  background: rgba(253, 251, 246, 0.88);
  backdrop-filter: blur(20px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.brand img {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(201, 145, 69, 0.28);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(36, 75, 67, 0.1);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #48605a;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding-block: 10px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  border-radius: 10px;
  background: var(--gold-500);
  content: "";
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 18px !important;
  border-radius: 999px;
  background: var(--green-800);
  color: var(--white) !important;
}

.nav-cta::after {
  display: none;
}

.nav-toggle {
  position: relative;
  z-index: 101;
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  color: var(--green-900);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  position: absolute;
  left: 11px;
  display: block;
  width: 20px;
  height: 2px;
  margin: 0;
  border-radius: 4px;
  background: currentColor;
  content: "";
}

.nav-toggle::before {
  top: 14px;
}

.nav-toggle span {
  top: 20px;
}

.nav-toggle::after {
  top: 26px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 96px 0 76px;
  background:
    radial-gradient(circle at 9% 12%, rgba(201, 145, 69, 0.13) 0, transparent 22%),
    radial-gradient(circle at 88% 82%, rgba(71, 117, 106, 0.14) 0, transparent 27%),
    var(--cream-100);
}

.hero::before {
  position: absolute;
  top: 62px;
  right: 5%;
  width: 230px;
  height: 115px;
  opacity: 0.5;
  background-image: radial-gradient(circle, rgba(201, 145, 69, 0.33) 3px, transparent 4px);
  background-size: 28px 28px;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 50px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  border-radius: 4px;
  background: var(--gold-500);
  content: "";
}

.hero h1 {
  margin: 0;
  font-size: clamp(46px, 5vw, 68px);
  line-height: 1.28;
  letter-spacing: -0.035em;
}

.hero h1 span {
  color: var(--green-700);
}

.hero-lead {
  max-width: 590px;
  margin: 30px 0 0;
  color: #51655f;
  font-size: 18px;
  line-height: 1.95;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: var(--green-900);
  box-shadow: 0 15px 30px rgba(36, 75, 67, 0.2);
  color: var(--white);
}

.button-primary:hover {
  background: var(--green-950);
  box-shadow: 0 18px 34px rgba(36, 75, 67, 0.26);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-900);
}

.button-secondary:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.apple-mark {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

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

.hero-note::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5c8a7f;
  box-shadow: 0 0 0 5px rgba(92, 138, 127, 0.12);
  content: "";
}

.hero-visual {
  position: relative;
  min-height: 570px;
}

.ipad-frame {
  position: absolute;
  top: 48px;
  right: -255px;
  width: 735px;
  padding: 13px;
  overflow: hidden;
  border: 4px solid #3a3d3c;
  border-radius: 35px;
  background: #181a19;
  box-shadow: var(--shadow-lg);
}

.ipad-frame img {
  width: 100%;
  border-radius: 22px;
}

.phone-frame {
  position: absolute;
  z-index: 3;
  bottom: -15px;
  left: 4px;
  width: 225px;
  padding: 8px;
  overflow: hidden;
  border: 3px solid #404341;
  border-radius: 42px;
  background: #171918;
  box-shadow: 0 28px 65px rgba(36, 75, 67, 0.28);
}

.phone-frame img {
  width: 100%;
  border-radius: 32px;
}

.hero-widget {
  position: absolute;
  z-index: 4;
  right: 2px;
  bottom: 16px;
  width: 265px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
}

.hero-widget img {
  border-radius: 17px;
}

.floating-label {
  position: absolute;
  z-index: 5;
  top: 5px;
  left: 80px;
  padding: 12px 19px;
  border: 1px solid rgba(201, 145, 69, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  color: var(--green-800);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 92px;
  padding: 20px;
  border-right: 1px solid var(--line);
  color: var(--green-900);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  background: var(--mint-100);
  color: var(--green-700);
  font-size: 17px;
}

.section {
  padding: 112px 0;
}

.section-soft {
  background: var(--cream-100);
}

.section-mint {
  background: var(--mint-100);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-head .eyebrow {
  justify-content: center;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.4;
  letter-spacing: -0.025em;
}

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

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

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 275px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.feature-card::after {
  position: absolute;
  right: -45px;
  bottom: -65px;
  width: 155px;
  height: 155px;
  border-radius: 50%;
  background: rgba(220, 236, 231, 0.6);
  content: "";
}

.feature-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  background: var(--mint-100);
  color: var(--green-700);
  font-size: 15px;
  font-weight: 900;
}

.feature-card h3 {
  margin: 25px 0 10px;
  font-size: 22px;
}

.feature-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.showcase {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 78px;
}

.showcase + .showcase {
  margin-top: 120px;
}

.showcase.reverse {
  grid-template-columns: 1.12fr 0.88fr;
}

.showcase.reverse .showcase-media {
  order: -1;
}

.showcase-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 49px);
  line-height: 1.42;
  letter-spacing: -0.025em;
}

.showcase-copy p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #38524c;
  font-size: 14px;
  font-weight: 700;
}

.check-list li::before {
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--mint-200);
  color: var(--green-800);
  content: "✓";
  font-size: 12px;
  font-weight: 900;
}

.showcase-media {
  position: relative;
  min-height: 550px;
}

.screenshot-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.screenshot-card.phone {
  top: 0;
  left: 50%;
  width: 270px;
  padding: 10px;
  transform: translateX(-50%);
  border-radius: 48px;
  background: #1a1c1b;
}

.screenshot-card.phone img {
  border-radius: 38px;
}

.screenshot-card.wide {
  inset: 52px 0 auto;
  padding: 12px;
  border-radius: 32px;
  background: #1a1c1b;
}

.screenshot-card.wide img {
  border-radius: 21px;
}

.mini-widget {
  position: absolute;
  z-index: 3;
  right: -28px;
  bottom: 50px;
  width: 280px;
  padding: 10px;
  border-radius: 27px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
}

.mini-widget img {
  border-radius: 18px;
}

.privacy-banner {
  position: relative;
  overflow: hidden;
  padding: 76px;
  border-radius: var(--radius-lg);
  background: var(--green-900);
  color: var(--white);
}

.privacy-banner::after {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 460px;
  height: 460px;
  border: 70px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  content: "";
}

.privacy-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 70px;
}

.privacy-banner h2 {
  margin: 0;
  font-size: clamp(35px, 4vw, 50px);
  line-height: 1.45;
}

.privacy-banner p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.77);
}

.privacy-points {
  display: grid;
  gap: 14px;
}

.privacy-point {
  padding: 17px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 14px;
  font-weight: 700;
}

.cta-section {
  padding: 80px 0 100px;
  text-align: center;
}

.cta-card {
  padding: 70px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 10% 100%, rgba(201,145,69,.14), transparent 28%),
    radial-gradient(circle at 90% 0%, rgba(71,117,106,.12), transparent 28%),
    var(--white);
  box-shadow: var(--shadow-sm);
}

.cta-card img {
  width: 84px;
  height: 84px;
  margin: 0 auto 22px;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.cta-card h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
}

.cta-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.cta-card .button-row {
  justify-content: center;
}

.site-footer {
  padding: 55px 0 28px;
  border-top: 1px solid var(--line);
  background: #f2ede3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.7fr);
  gap: 50px;
}

.footer-brand p {
  max-width: 330px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-col h3 {
  margin: 0 0 15px;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.footer-links {
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--green-800);
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #71827d;
  font-size: 11px;
}

/* Inner pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 75px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 20%, rgba(201,145,69,.14), transparent 24%),
    var(--cream-100);
}

.page-hero::after {
  position: absolute;
  right: 8%;
  bottom: -80px;
  width: 250px;
  height: 250px;
  border: 45px solid rgba(53, 92, 82, 0.05);
  border-radius: 50%;
  content: "";
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 12px;
}

.breadcrumbs span {
  opacity: .55;
}

.page-hero h1 {
  max-width: 830px;
  margin: 0;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.page-hero p {
  max-width: 700px;
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.updated {
  display: inline-flex;
  margin-top: 22px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
}

.inner-section {
  padding: 85px 0 110px;
}

.content-layout {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  align-items: start;
  gap: 70px;
}

.toc {
  position: sticky;
  top: 110px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.toc strong {
  display: block;
  margin-bottom: 13px;
  font-size: 13px;
}

.toc a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: 12px;
}

.toc a:hover {
  color: var(--green-800);
}

.prose {
  max-width: 820px;
}

.prose section {
  scroll-margin-top: 110px;
}

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

.prose h2 {
  margin: 0 0 22px;
  font-size: 27px;
  line-height: 1.45;
}

.prose h3 {
  margin: 30px 0 10px;
  font-size: 18px;
}

.prose p,
.prose li {
  color: #526660;
  font-size: 15px;
}

.prose p {
  margin: 0 0 16px;
}

.prose ul,
.prose ol {
  margin: 15px 0;
  padding-left: 1.5em;
}

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

.callout {
  margin: 28px 0;
  padding: 22px 24px;
  border: 1px solid rgba(53, 92, 82, 0.14);
  border-left: 4px solid var(--green-700);
  border-radius: 16px;
  background: var(--mint-100);
}

.callout strong {
  display: block;
  margin-bottom: 5px;
}

.callout p {
  margin: 0;
  font-size: 13px;
}

.contact-inline {
  color: var(--green-700);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(53, 92, 82, .3);
  text-underline-offset: 3px;
}

/* Guide */
.guide-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 80px;
}

.guide-intro-card {
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.guide-intro-card span {
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
}

.guide-intro-card h2 {
  margin: 11px 0 7px;
  font-size: 20px;
}

.guide-intro-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.guide-steps {
  display: grid;
  gap: 90px;
}

.guide-step {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
  align-items: center;
  gap: 75px;
}

.guide-step:nth-child(even) {
  grid-template-columns: minmax(430px, 1.12fr) minmax(0, 0.88fr);
}

.guide-step:nth-child(even) .guide-shot {
  order: -1;
}

.step-number {
  display: inline-flex;
  margin-bottom: 17px;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--mint-200);
  color: var(--green-800);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.guide-copy h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.45;
}

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

.guide-copy ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.guide-copy li {
  display: flex;
  gap: 9px;
  color: #435b55;
  font-size: 13px;
}

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

.guide-copy li::before {
  color: var(--gold-500);
  content: "●";
  font-size: 8px;
}

.guide-shot {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 10% 15%, rgba(201,145,69,.14), transparent 25%),
    var(--cream-100);
  box-shadow: var(--shadow-sm);
}

.guide-shot .phone-frame {
  top: 42px;
  bottom: auto;
  left: 50%;
  width: 260px;
  transform: translateX(-50%);
}

.guide-shot .ipad-frame {
  top: 70px;
  right: -150px;
  width: 650px;
}

.guide-shot .mini-widget {
  right: 26px;
  bottom: 45px;
  width: 260px;
}

/* Support */
.support-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: start;
  gap: 55px;
}

.contact-card {
  position: sticky;
  top: 110px;
  padding: 34px;
  border-radius: 27px;
  background: var(--green-900);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.contact-card h2 {
  margin: 0;
  font-size: 28px;
}

.contact-card p {
  margin: 14px 0 0;
  color: rgba(255,255,255,.76);
  font-size: 14px;
}

.contact-card .button {
  width: 100%;
  margin-top: 24px;
  background: var(--white);
  color: var(--green-900);
}

.contact-meta {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.68);
  font-size: 11px;
}

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

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 8px 25px rgba(36,75,67,.05);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  color: var(--green-700);
  content: "+";
  font-size: 22px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 24px 23px;
  color: var(--muted);
  font-size: 14px;
}

.faq-answer p {
  margin: 0;
}

@media (max-width: 1020px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    min-height: 580px;
  }

  .ipad-frame {
    right: -70px;
  }

  .phone-frame {
    left: 9%;
  }

  .hero-widget {
    right: 7%;
  }

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

  .showcase,
  .showcase.reverse,
  .privacy-grid,
  .guide-step,
  .guide-step:nth-child(even),
  .support-grid {
    grid-template-columns: 1fr;
  }

  .showcase.reverse .showcase-media,
  .guide-step:nth-child(even) .guide-shot {
    order: initial;
  }

  .showcase-media {
    min-height: 570px;
  }

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

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

  .toc,
  .contact-card {
    position: static;
  }
}

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

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

  .brand img {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .nav-toggle {
    display: block !important;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: 68px;
    right: 0;
    left: 0;
    display: grid;
    gap: 4px;
    padding: 18px 20px 26px;
    transform: translateY(-130%);
    border-bottom: 1px solid var(--line);
    background: var(--cream-50);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 12px 8px;
  }

  .nav-cta {
    margin-top: 7px;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 70px 0 40px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-visual {
    min-height: 510px;
  }

  .ipad-frame {
    top: 50px;
    right: -250px;
    width: 680px;
  }

  .phone-frame {
    bottom: 0;
    left: 5px;
    width: 180px;
    border-radius: 34px;
  }

  .phone-frame img {
    border-radius: 26px;
  }

  .hero-widget {
    right: -25px;
    bottom: 40px;
    width: 205px;
  }

  .floating-label {
    left: 8px;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 78px 0;
  }

  .feature-grid,
  .footer-grid,
  .guide-intro-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .showcase + .showcase {
    margin-top: 80px;
  }

  .showcase-media {
    min-height: 520px;
  }

  .screenshot-card.wide {
    right: -140px;
    left: -15px;
  }

  .privacy-banner {
    padding: 48px 25px;
  }

  .cta-card {
    padding: 52px 20px;
  }

  .copyright {
    flex-direction: column;
  }

  .page-hero {
    padding: 66px 0 55px;
  }

  .page-hero p {
    font-size: 15px;
  }

  .inner-section {
    padding: 60px 0 80px;
  }

  .guide-steps {
    gap: 70px;
  }

  .guide-step,
  .guide-step:nth-child(even) {
    gap: 32px;
  }

  .guide-shot {
    min-height: 475px;
  }

  .guide-shot .ipad-frame {
    right: -245px;
    width: 620px;
  }

  .guide-shot .mini-widget {
    right: 8px;
    width: 215px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
