:root {
  --bg: #fff5ea;
  --bg-2: #ffe9d3;
  --card: #ffffff;
  --red: #cd261c;
  --red-deep: #a81d15;
  --ink: #2a1a14;
  --ink-soft: #6b554b;
  --line: #f1d9c3;
  --mustard: #f4b63d;
  --right: #cd261c;
  --left: #6b7a8f;
  --down: #2f8f5b;
  --up: #d98a1a;
  --radius: 22px;
  --round: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Sans", system-ui, sans-serif;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--round);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.wrap { width: min(1080px, 100% - 32px); margin-inline: auto; }

/* Header */
.site-header { padding: 14px 0; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 700; }
.brand img { width: 36px; height: 36px; border-radius: 9px; }
.lang { font-size: 14px; text-decoration: none; border: 1.5px solid var(--line); background: var(--card); padding: 5px 14px; border-radius: 999px; font-weight: 700; color: var(--ink-soft); }
.lang:hover { color: var(--red); border-color: var(--red); }

/* Hero */
.hero { padding: 32px 0 80px; position: relative; }
.hero::before {
  content: ""; position: absolute; inset: -40% -20% auto auto; width: 70vw; height: 70vw; max-width: 820px; max-height: 820px;
  background: radial-gradient(circle, #cd261c1f, transparent 65%); z-index: -1;
}
.hero .wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.pill { display: inline-block; background: var(--red); color: #fff; font-weight: 700; font-size: 14px; padding: 4px 16px; border-radius: 999px; margin-bottom: 18px; }
.hero h1 { font-size: clamp(28px, 4.6vw, 54px); line-height: 1.25; margin: 0 0 18px; letter-spacing: 0.01em; }
.hero h1 em { font-style: normal; color: var(--red); }
.hero h1 .line { display: inline-block; }
.hero .lead { font-size: clamp(16px, 2vw, 19px); color: var(--ink-soft); margin: 0 0 30px; max-width: 32em; }
.cta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.store-btn {
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none;
  background: var(--ink); color: #fff; padding: 12px 24px; border-radius: 16px; font-weight: 700;
  box-shadow: 0 10px 24px -10px #2a1a1480; transition: transform 0.15s ease;
}
.store-btn:hover { transform: translateY(-2px); }
.store-btn svg { width: 22px; height: 22px; }
.store-btn small { display: block; font-size: 11px; font-weight: 500; opacity: 0.85; line-height: 1.1; }
.store-btn span { line-height: 1.25; }
.cta-note { font-size: 13px; color: var(--ink-soft); }

.phone {
  border-radius: 40px; padding: 9px; background: #1f1511;
  box-shadow: 0 30px 60px -24px #2a1a1466, 0 0 0 1px #0000000d;
}
.phone img { border-radius: 32px; width: 100%; }
.hero .phone { max-width: 320px; margin-inline: auto; transform: rotate(-3deg); }

/* Sections */
section { padding: 72px 0; }
.section-title { text-align: center; margin-bottom: 44px; }
.section-title .kicker { color: var(--red); font-weight: 700; letter-spacing: 0.12em; font-size: 13px; display: block; margin-bottom: 4px; }
.section-title h2 { font-size: clamp(26px, 3.6vw, 38px); margin: 0 0 8px; line-height: 1.35; }
.section-title p { margin: 0; color: var(--ink-soft); }

/* Swipe cross */
.swipe { background: var(--bg-2); border-radius: 40px; padding: 56px 24px; }
.cross {
  display: grid; grid-template-columns: 1fr auto 1fr; grid-template-rows: auto auto auto;
  grid-template-areas: ". up ." "left card right" ". down .";
  gap: 18px; align-items: center; justify-items: center; max-width: 820px; margin-inline: auto;
}
.cross .card { grid-area: card; width: 200px; }
.dir {
  background: var(--card); border-radius: 18px; padding: 16px 18px; width: 100%; max-width: 240px;
  box-shadow: 0 10px 24px -16px #2a1a1440; border: 1.5px solid var(--line);
}
.dir .arrow { font-size: 22px; font-weight: 700; line-height: 1; display: flex; align-items: center; gap: 8px; }
.dir .arrow b { font-size: 17px; }
.dir p { margin: 6px 0 0; font-size: 14px; color: var(--ink-soft); line-height: 1.6; }
.dir.right { grid-area: right; } .dir.right .arrow { color: var(--right); }
.dir.left  { grid-area: left; }  .dir.left .arrow { color: var(--left); }
.dir.up    { grid-area: up; }    .dir.up .arrow { color: var(--up); }
.dir.down  { grid-area: down; }  .dir.down .arrow { color: var(--down); }

/* Features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
  background: var(--card); border-radius: var(--radius); padding: 22px 22px 26px; border: 1.5px solid var(--line);
  display: flex; flex-direction: column;
}
.feature .phone { max-width: 200px; margin: 0 auto 20px; border-radius: 30px; padding: 7px; }
.feature .phone img { border-radius: 24px; }
.feature h3 { margin: 0 0 6px; font-size: 19px; }
.feature h3 span { color: var(--red); }
.feature p { margin: 0; color: var(--ink-soft); font-size: 15px; }

.mini { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.mini div { background: var(--card); border: 1.5px solid var(--line); border-radius: 18px; padding: 18px 20px; }
.mini h3 { margin: 0 0 4px; font-size: 16px; }
.mini p { margin: 0; font-size: 14px; color: var(--ink-soft); }

/* Privacy band */
.note { text-align: center; }
.note .box { display: inline-block; background: var(--card); border: 1.5px dashed var(--red); border-radius: 18px; padding: 18px 26px; max-width: 640px; }
.note p { margin: 0; color: var(--ink-soft); }

/* Final */
.final { text-align: center; }
.final img.icon { width: 104px; height: 104px; border-radius: 24px; margin: 0 auto 18px; box-shadow: 0 16px 30px -14px #cd261c88; }
.final .cta { justify-content: center; }

/* Footer */
.site-footer { background: var(--red); color: #fff; padding: 36px 0 44px; font-size: 14px; }
.site-footer .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 20px; }
.site-footer a { text-decoration: none; opacity: 0.92; }
.site-footer a:hover { opacity: 1; text-decoration: underline; }

@media (max-width: 880px) {
  .hero .wrap { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero .lead { margin-inline: auto; }
  .cta { justify-content: center; }
  .hero .phone { max-width: 250px; }
  .features { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .mini { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
}
@media (max-width: 640px) {
  .swipe { padding: 40px 16px; border-radius: 28px; }
  .cross { grid-template-columns: 1fr 1fr; grid-template-areas: "card card" "right left" "down up"; gap: 12px; }
  .cross .card { width: 160px; margin-bottom: 8px; }
  .dir { max-width: none; padding: 14px; }
  .dir p { font-size: 13px; }
}
