@charset "UTF-8";

:root {
  color-scheme: light;
  --color-bg: #f8f9fa;
  --color-surface: #ffffff;
  --color-surface-alt: #f1f3f5;
  --color-ink: #1a1b1e;
  --color-soft-ink: #626976;
  --color-hairline: #e3e6ea;
  --color-accent: #4c5bcc;
  --color-accent-alt: #7551b9;
  --color-accent-soft: #eef0ff;
  --color-top-blue: #6bb7ec;
  --color-bottom-sand: #f4e3be;
  --color-outer-orange: #f39950;
  --color-warm: #c24a1a;
  --color-cool: #2f67b2;
  --color-success: #287a55;
  --gradient-accent: linear-gradient(135deg, #4c5bcc, #7551b9);
  --gradient-warm: linear-gradient(145deg, #f7c06b, #f47b44);
  --shadow-soft:
    0 1px 2px rgb(16 24 40 / 5%),
    0 18px 48px rgb(16 24 40 / 10%);
  --shadow-card:
    0 1px 2px rgb(16 24 40 / 4%),
    0 12px 30px rgb(16 24 40 / 7%);
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --page-gutter: clamp(20px, 4vw, 64px);
  --page-max: 1280px;
  --section-space: clamp(84px, 9vw, 144px);
  --font-sans:
    "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic",
    "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  font-family: var(--font-sans);
}

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

button {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  transform: translateY(-150%);
  border-radius: 10px;
  background: var(--color-ink);
  color: #ffffff;
  font-weight: 700;
  transition: transform 160ms ease;
}

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

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

.page-shell {
  width: min(100% - (var(--page-gutter) * 2), var(--page-max));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgb(227 230 234 / 78%);
  background: rgb(248 249 250 / 88%);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 10px;
}

.brand-name {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  font-size: 14px;
  font-weight: 700;
}

.primary-navigation a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-radius: 999px;
  color: var(--color-soft-ink);
  transition:
    color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

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

.primary-navigation .nav-cta {
  padding-inline: 20px;
  background: var(--gradient-accent);
  color: #ffffff;
  box-shadow: 0 8px 18px rgb(76 91 204 / 22%);
}

.primary-navigation .nav-cta:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 0;
  border-radius: 14px;
  background: var(--color-surface);
  box-shadow: inset 0 0 0 1px var(--color-hairline);
  cursor: pointer;
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.menu-button[aria-expanded="true"] > span:nth-of-type(2) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"] > span:nth-of-type(3) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] > span:nth-of-type(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  min-height: min(820px, calc(100svh - 76px));
  display: grid;
  align-items: center;
  padding-top: clamp(72px, 8vw, 120px);
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: clamp(48px, 7vw, 108px);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 26px;
  font-size: clamp(43px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.045em;
}

.accent-text {
  background: var(--gradient-accent);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

.hero-description {
  max-width: 640px;
  margin-bottom: 32px;
  color: var(--color-soft-ink);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

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

.button-primary {
  background: var(--gradient-accent);
  color: #ffffff;
  box-shadow: 0 12px 28px rgb(76 91 204 / 24%);
}

.button-secondary {
  background: var(--color-surface);
  box-shadow:
    inset 0 0 0 1px var(--color-hairline),
    var(--shadow-card);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 0;
  padding: 0;
  color: var(--color-soft-ink);
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

.hero-points span {
  margin-right: 4px;
  color: var(--color-success);
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.preview-figure {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 12px;
}

.phone-placeholder {
  position: relative;
  z-index: 2;
  width: min(330px, 70vw);
  aspect-ratio: 9 / 18.8;
  padding: 32px;
  border: 10px solid var(--color-ink);
  border-radius: 48px;
  box-shadow: 0 38px 90px rgb(24 30 60 / 22%);
}

.phone-placeholder::before {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 32%;
  height: 22px;
  border-radius: 999px;
  background: var(--color-ink);
  content: "";
  transform: translateX(-50%);
}

.app-preview {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  background: linear-gradient(155deg, #ffffff 0%, #f3f5ff 100%);
  color: var(--color-ink);
}

.preview-top {
  display: flex;
  min-height: 48px;
  align-items: end;
  justify-content: space-between;
  padding-top: 10px;
}

.preview-top strong {
  font-size: 20px;
  letter-spacing: 0.04em;
}

.preview-top span {
  color: var(--color-soft-ink);
  font-size: 12px;
  font-weight: 800;
}

.preview-weather {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px;
  border-radius: 24px;
  background: var(--gradient-accent);
  color: #ffffff;
  box-shadow: 0 16px 36px rgb(76 91 204 / 24%);
}

.preview-weather > div {
  display: grid;
  gap: 4px;
}

.preview-weather small {
  color: rgb(255 255 255 / 74%);
  font-size: 10px;
  font-weight: 800;
}

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

.preview-weather > span {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.preview-outfit {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.preview-outfit > span {
  display: grid;
  min-width: 0;
  justify-items: center;
  gap: 8px;
  padding: 14px 6px;
  border: 1px solid var(--color-hairline);
  border-radius: 18px;
  background: #ffffff;
  text-align: center;
}

.preview-outfit img {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  object-fit: cover;
}

.preview-outfit small {
  color: var(--color-soft-ink);
  font-size: 8px;
  font-weight: 800;
  line-height: 1.35;
}

.preview-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.preview-summary span {
  padding: 11px 8px;
  border-radius: 14px;
  background: #ffffff;
  color: var(--color-soft-ink);
  font-size: 9px;
  font-weight: 800;
  text-align: center;
}

.preview-data-note {
  margin: 0;
  color: var(--color-soft-ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgb(76 91 204 / 12%);
  border-radius: 50%;
}

.orbit-one {
  width: 520px;
  height: 520px;
}

.orbit-two {
  width: 680px;
  height: 680px;
}

.floating-chip {
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 2px 10px;
  min-width: 168px;
  padding: 14px 18px;
  border: 1px solid rgb(227 230 234 / 80%);
  border-radius: 20px;
  background: rgb(255 255 255 / 88%);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.floating-chip > span {
  grid-row: 1 / 3;
  font-size: 28px;
}

.floating-chip strong {
  font-size: 15px;
}

.floating-chip small {
  color: var(--color-soft-ink);
  font-size: 11px;
}

.chip-weather {
  top: 16%;
  left: -1%;
}

.chip-feeling {
  right: -4%;
  bottom: 20%;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-warm {
  top: 10%;
  right: 29%;
  width: 280px;
  height: 280px;
  background: rgb(243 153 80 / 15%);
}

.hero-glow-cool {
  right: -120px;
  bottom: 4%;
  width: 520px;
  height: 520px;
  background: rgb(107 183 236 / 12%);
}

.promise-strip {
  border-block: 1px solid var(--color-hairline);
  background: var(--color-surface);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.promise-grid p {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 22px clamp(18px, 3vw, 42px);
}

.promise-grid p + p {
  border-left: 1px solid var(--color-hairline);
}

.promise-grid p > span:last-child {
  display: grid;
  color: var(--color-soft-ink);
  font-size: 12px;
  line-height: 1.5;
}

.promise-grid strong {
  margin-bottom: 3px;
  color: var(--color-ink);
  font-size: 14px;
}

.promise-icon {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  font-weight: 900;
}

.promise-icon-cool {
  background: #e6f3fc;
  color: var(--color-cool);
}

.promise-icon-green {
  background: #e4f5ed;
  color: var(--color-success);
}

.promise-icon-warm {
  background: #fceee4;
  color: var(--color-warm);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto clamp(44px, 5vw, 70px);
  text-align: center;
}

.section-heading h2,
.comparison-copy h2,
.privacy-copy h2,
.download-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: -0.035em;
}

.section-heading > p:last-child,
.comparison-copy > p,
.privacy-copy > p,
.download-copy > p {
  color: var(--color-soft-ink);
  font-size: 17px;
}

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

.feature-card {
  min-width: 0;
  min-height: 440px;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.feature-card-primary {
  border-color: rgb(76 91 204 / 18%);
  background:
    linear-gradient(180deg, rgb(238 240 255 / 72%), #ffffff 48%);
}

.feature-icon,
.step-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 18px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  font-size: 24px;
}

.feature-icon-warm {
  background: #fceee4;
  color: var(--color-warm);
}

.feature-icon-cool {
  background: #e6f3fc;
  color: var(--color-cool);
}

.card-label {
  margin-bottom: 8px;
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.feature-card h3,
.step-card h3 {
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.45;
}

.feature-card > p:not(.card-label),
.step-card p {
  color: var(--color-soft-ink);
  font-size: 14px;
}

.mini-outfit {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 32px;
}

.mini-outfit span {
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 8px 6px;
  border-radius: 18px;
  text-align: center;
}

.mini-outfit img {
  width: min(100%, 72px);
  height: auto;
  border-radius: 14px;
}

.mini-outfit small {
  color: var(--color-soft-ink);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.35;
}

.mini-outfit span:nth-child(1) {
  background: #fce0cb;
}

.mini-outfit span:nth-child(2) {
  background: #dceefa;
}

.mini-outfit span:nth-child(3) {
  background: #f8edcf;
}

.feeling-scale {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.feeling-scale span {
  padding: 9px 12px;
  border-radius: 12px;
  background: var(--color-surface-alt);
  color: var(--color-soft-ink);
  font-size: 11px;
  text-align: center;
}

.feeling-scale .is-selected {
  background: #e4f5ed;
  color: var(--color-success);
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgb(40 122 85 / 22%);
}

.outlook-asset {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 28px;
  border-radius: 18px;
}

.comparison-section {
  background: var(--color-surface);
}

.comparison-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  align-items: center;
  gap: clamp(52px, 8vw, 120px);
}

.comparison-visual {
  display: grid;
  width: 100%;
  justify-items: center;
  gap: 12px;
}

.comparison-copy {
  max-width: 560px;
}

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

.check-list li {
  display: flex;
  gap: 10px;
  color: var(--color-soft-ink);
  font-size: 14px;
}

.check-list span {
  color: var(--color-success);
  font-weight: 900;
}

.landscape-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 32px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.weather-preview {
  display: grid;
  align-content: center;
  gap: 24px;
  overflow: hidden;
  border: 1px solid var(--color-hairline);
  background:
    radial-gradient(circle at 92% 12%, rgb(244 227 190 / 78%), transparent 32%),
    linear-gradient(145deg, #ffffff 0%, #f5f7ff 100%);
}

.weather-preview-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.weather-preview-heading > div {
  display: grid;
}

.weather-preview-heading small {
  color: var(--color-soft-ink);
  font-size: 12px;
  font-weight: 800;
}

.weather-preview-heading strong {
  font-size: clamp(54px, 8vw, 82px);
  line-height: 1;
  letter-spacing: -0.08em;
}

.weather-preview-heading > span {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border-radius: 28px;
  background: #fff0c9;
  font-size: 38px;
}

.weather-preview-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.weather-preview-metrics > span {
  display: grid;
  gap: 2px;
  padding: 16px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.weather-preview-metrics b {
  font-size: 16px;
}

.weather-preview-metrics small {
  color: var(--color-soft-ink);
  font-size: 10px;
  font-weight: 800;
}

.weather-preview-comparison {
  display: grid;
  gap: 10px;
  color: var(--color-accent);
  font-size: 13px;
}

.weather-preview-comparison > span {
  width: 68%;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-top-blue), var(--color-outer-orange));
}

.steps-section {
  overflow: hidden;
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-grid::before {
  position: absolute;
  z-index: -1;
  top: 67px;
  right: 16%;
  left: 16%;
  height: 1px;
  background: linear-gradient(90deg, var(--color-top-blue), var(--color-accent-alt));
  content: "";
}

.step-card {
  position: relative;
  padding: 32px;
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.step-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: rgb(76 91 204 / 18%);
  font-size: 38px;
  font-weight: 900;
}

.privacy-section {
  padding-top: 32px;
}

.privacy-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: clamp(28px, 4vw, 60px);
  padding: clamp(38px, 5vw, 70px);
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--gradient-accent);
  color: #ffffff;
  box-shadow: 0 28px 70px rgb(76 91 204 / 24%);
}

.privacy-card::after {
  position: absolute;
  right: -100px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 50%;
  content: "";
}

.privacy-visual {
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 32px;
  background: rgb(255 255 255 / 12%);
}

.shield-shape {
  display: grid;
  width: 56px;
  height: 64px;
  place-items: center;
  border-radius: 24px 24px 30px 30px;
  background: #ffffff;
  color: var(--color-accent);
  font-size: 24px;
  font-weight: 900;
  clip-path: polygon(50% 0, 94% 17%, 88% 68%, 50% 100%, 12% 68%, 6% 17%);
}

.eyebrow-light {
  color: rgb(255 255 255 / 76%);
}

.privacy-copy h2 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: clamp(29px, 3vw, 42px);
}

.privacy-copy > p {
  margin-bottom: 22px;
  color: rgb(255 255 255 / 80%);
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 800;
}

.text-link-light {
  color: #ffffff;
}

.privacy-points {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 22px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 20px;
  background: rgb(255 255 255 / 10%);
  list-style: none;
}

.privacy-points li {
  display: flex;
  gap: 10px;
  color: rgb(255 255 255 / 88%);
  font-size: 13px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(52px, 8vw, 120px);
}

.faq-heading {
  position: sticky;
  top: 120px;
  margin: 0;
  text-align: left;
}

.faq-list {
  border-top: 1px solid var(--color-hairline);
}

.faq-list details {
  border-bottom: 1px solid var(--color-hairline);
}

.faq-list summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 18px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  display: grid;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  content: "+";
  font-size: 20px;
}

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

.faq-list details p {
  max-width: 680px;
  margin-bottom: 24px;
  padding-right: 52px;
  color: var(--color-soft-ink);
  font-size: 14px;
}

.download-section {
  overflow: hidden;
}

.download-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(42px, 6vw, 86px);
  padding: clamp(38px, 5vw, 70px);
  border: 1px solid var(--color-hairline);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.download-copy h2 {
  font-size: clamp(30px, 3vw, 44px);
}

.store-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.store-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--color-hairline);
  border-radius: 20px;
  background: var(--color-bg);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.store-card:hover {
  border-color: rgb(76 91 204 / 34%);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.store-card > div:last-child {
  display: grid;
}

.store-card small {
  color: var(--color-soft-ink);
  font-size: 9px;
  letter-spacing: 0.05em;
}

.store-card strong {
  font-size: 17px;
  line-height: 1.4;
}

.store-card > div:last-child > span {
  margin-top: 4px;
  color: var(--color-accent);
  font-size: 10px;
  font-weight: 800;
}

.support-card-icon {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border-radius: 24px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  font-size: 30px;
  font-weight: 900;
}

.download-glow {
  position: absolute;
  right: -100px;
  bottom: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgb(117 81 185 / 10%);
}

.site-footer {
  padding-top: 72px;
  background: #15171b;
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  padding-bottom: 52px;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-grid p {
  max-width: 440px;
  margin: 0;
  color: rgb(255 255 255 / 62%);
  font-size: 13px;
}

.footer-grid nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  align-content: start;
}

.footer-grid nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: rgb(255 255 255 / 72%);
  font-size: 13px;
  font-weight: 700;
}

.footer-grid nav a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgb(255 255 255 / 10%);
  color: rgb(255 255 255 / 46%);
}

@media (max-width: 1199px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 44px;
  }

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

  .feature-card {
    padding: 28px;
  }

  .comparison-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
    gap: 56px;
  }

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

  .privacy-points {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
  }

  .download-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1023px) {
  .header-inner {
    min-height: 68px;
    flex-wrap: wrap;
  }

  .menu-button {
    display: none;
  }

  .primary-navigation {
    display: grid;
    width: 100%;
    padding: 12px var(--page-gutter) 20px;
    border-bottom: 1px solid var(--color-hairline);
    background: rgb(248 249 250 / 98%);
  }

  .primary-navigation a,
  .primary-navigation a:not(.nav-cta) {
    display: flex;
    width: 100%;
    min-height: 52px;
    padding-inline: 16px;
  }

  .primary-navigation .nav-cta {
    justify-content: center;
    margin-top: 6px;
  }

  .js .menu-button {
    display: block;
  }

  .js .primary-navigation {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    width: auto;
    box-shadow: var(--shadow-card);
  }

  .js .primary-navigation.is-open {
    display: grid;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.78fr;
  }

  .hero h1 {
    font-size: clamp(40px, 5.6vw, 58px);
  }

  .phone-placeholder {
    width: min(280px, 72vw);
  }

  .floating-chip {
    min-width: 148px;
    padding: 12px 14px;
  }

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

  .promise-grid p {
    min-height: 88px;
  }

  .promise-grid p + p {
    border-top: 1px solid var(--color-hairline);
    border-left: 0;
  }

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

  .feature-card-primary {
    grid-column: 1 / -1;
    min-height: 400px;
  }

  .mini-outfit {
    max-width: 520px;
  }

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

  .comparison-copy {
    max-width: 720px;
  }

  .landscape-placeholder {
    max-width: 760px;
  }

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

  .steps-grid::before {
    display: none;
  }

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

  .faq-heading {
    position: static;
  }
}

@media (max-width: 767px) {
  :root {
    --page-gutter: 20px;
    --section-space: 84px;
  }

  html {
    scroll-padding-top: 76px;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
  }

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

  .chip-weather {
    top: 13%;
    left: 0;
  }

  .chip-feeling {
    right: 0;
    bottom: 12%;
  }

  .promise-grid p {
    padding-inline: 8px;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading h2,
  .comparison-copy h2,
  .privacy-copy h2,
  .download-copy h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

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

  .feature-card-primary {
    grid-column: auto;
  }

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

  .privacy-card {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .privacy-visual {
    width: 88px;
    height: 88px;
  }

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

  .faq-list summary {
    min-height: 72px;
    font-size: 15px;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .download-card {
    padding-inline: 24px;
    border-radius: 28px;
  }

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

  .store-card {
    grid-template-columns: 84px 1fr;
  }

  .support-card-icon {
    width: 84px;
    height: 84px;
  }

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

  .footer-grid nav {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    min-height: 96px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
  }
}

@media (max-width: 389px) {
  :root {
    --page-gutter: 16px;
  }

  .brand-name {
    font-size: 20px;
  }

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

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

  .phone-placeholder {
    width: 248px;
    padding: 24px;
  }

  .floating-chip {
    min-width: 132px;
  }

  .chip-weather {
    left: -8px;
  }

  .chip-feeling {
    right: -8px;
  }

  .feature-card,
  .step-card {
    padding: 24px;
  }

  .privacy-card {
    padding: 28px 22px;
  }

  .store-card {
    grid-template-columns: 72px 1fr;
    padding: 14px;
  }

  .support-card-icon {
    width: 72px;
    height: 72px;
  }
}

@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;
  }
}

@media (prefers-contrast: more) {
  :root {
    --color-soft-ink: #464b54;
    --color-hairline: #aeb4bd;
  }

  .feature-card,
  .step-card,
  .download-card {
    border-width: 2px;
  }
}

@media (forced-colors: active) {
  .accent-text {
    background: none;
    color: LinkText;
  }

  .brand-mark,
  .hero-glow,
  .download-glow,
  .visual-orbit {
    display: none;
  }

  .button,
  .nav-cta,
  .privacy-card {
    border: 1px solid ButtonText;
  }
}
