:root {
  --color-bg: #07080f;
  --color-bg-alt: #0c0e18;
  --color-bg-elev: #14172380;
  --color-text: #e8eaf2;
  --color-text-mute: #8b90a8;
  --color-text-dim: #5e6378;
  --color-light: #fbbf24;
  --color-light-soft: #fcd34d;
  --color-glow: #f59e0b;
  --color-cool: #6366f1;
  --color-border: #1c2030;
  --color-border-strong: #2a3047;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-cast: 0 30px 60px rgba(0, 0, 0, 0.55), 0 12px 24px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 12px 32px rgba(0, 0, 0, 0.4);
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.45);
  --glow-warm: 0 0 32px rgba(251, 191, 36, 0.35), 0 0 80px rgba(245, 158, 11, 0.18);
  --container: 1120px;
  --transition: 0.25s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text);
  background:
    radial-gradient(1400px 800px at 80% -10%, rgba(99, 102, 241, 0.08), transparent 60%),
    radial-gradient(1200px 700px at -10% 30%, rgba(251, 191, 36, 0.06), transparent 60%),
    var(--color-bg);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--color-light);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-light-soft);
}

h1, h2, h3 {
  margin: 0 0 0.6em;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
}

p {
  margin: 0 0 1em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.container-narrow {
  max-width: 760px;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 8, 15, 0.7);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}

.site-header.is-scrolled {
  border-bottom-color: var(--color-border);
  background: rgba(7, 8, 15, 0.88);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
}

.logo:hover {
  color: #fff;
}

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: rgba(20, 23, 35, 0.8);
  border: 1px solid var(--color-border-strong);
  border-radius: 8px;
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.nav a:hover {
  color: var(--color-light);
}

.nav .nav-cta {
  background: var(--color-light);
  color: #1a1408;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--glow-warm);
}

.nav .nav-cta:hover {
  background: var(--color-light-soft);
  color: #1a1408;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.nav-toggle span {
  display: block;
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), top var(--transition), opacity var(--transition);
}

.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 25px; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition),
    color var(--transition), border-color var(--transition), box-shadow var(--transition);
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-light), var(--color-glow));
  color: #1a1408;
  box-shadow: var(--glow-warm);
}

.btn-primary:hover {
  color: #1a1408;
  box-shadow:
    0 0 40px rgba(251, 191, 36, 0.5),
    0 0 100px rgba(245, 158, 11, 0.3);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
  border-color: var(--color-border-strong);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: var(--color-light);
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-store {
  background: #fff;
  color: #07080f;
  padding: 10px 22px;
  border-radius: 12px;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1.1;
  min-width: 180px;
}

.btn-store:hover {
  color: #07080f;
  background: var(--color-light-soft);
}

.btn-store-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.8;
}

.btn-store-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 96px 0 120px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  top: -120px;
  left: 60%;
  width: 520px;
  height: 520px;
  background: radial-gradient(closest-side, rgba(251, 191, 36, 0.25), rgba(251, 191, 36, 0) 70%);
  filter: blur(8px);
}

.hero-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255, 255, 255, 0.6), transparent 50%),
    radial-gradient(1px 1px at 30% 80%, rgba(255, 255, 255, 0.5), transparent 50%),
    radial-gradient(1.5px 1.5px at 70% 35%, rgba(255, 255, 255, 0.7), transparent 50%),
    radial-gradient(1px 1px at 85% 70%, rgba(255, 255, 255, 0.5), transparent 50%),
    radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.4), transparent 50%),
    radial-gradient(1.5px 1.5px at 20% 60%, rgba(255, 255, 255, 0.6), transparent 50%),
    radial-gradient(1px 1px at 90% 15%, rgba(255, 255, 255, 0.5), transparent 50%);
  opacity: 0.7;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 22px;
  background: rgba(251, 191, 36, 0.08);
  color: var(--color-light);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
}

.hero .accent {
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-light-soft) 50%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(251, 191, 36, 0.4));
}

.hero .lead {
  color: var(--color-text-mute);
  font-size: 16px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--color-text-mute);
  font-size: 13px;
}

.hero-meta li {
  position: relative;
  padding-left: 22px;
}

.hero-meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: radial-gradient(circle, var(--color-light) 0%, transparent 70%);
  border-radius: 50%;
}

/* Hero visual: phone mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  border-radius: 28px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--color-border-strong);
  box-shadow:
    var(--shadow-cast),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 80px rgba(251, 191, 36, 0.12);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.6s ease;
}

.phone-frame:hover {
  transform: perspective(1200px) rotateY(0) rotateX(0);
}

.phone-frame img {
  width: 100%;
  display: block;
}

.cast-shadow {
  position: absolute;
  bottom: -30px;
  left: 8%;
  right: 8%;
  height: 50px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.7), transparent 70%);
  filter: blur(20px);
  z-index: -1;
}

/* ===== Sections ===== */
.section {
  padding: 112px 0;
  position: relative;
}

.section-alt {
  background:
    linear-gradient(180deg, transparent, rgba(12, 14, 24, 0.6) 40%, rgba(12, 14, 24, 0.6) 60%, transparent),
    var(--color-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section-eyebrow {
  text-align: center;
  color: var(--color-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  margin-bottom: 14px;
}

.section-title {
  text-align: center;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  margin-bottom: 18px;
}

.section-lead {
  text-align: center;
  color: var(--color-text-mute);
  max-width: 640px;
  margin: 0 auto 56px;
}

/* ===== Service ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(closest-side, rgba(251, 191, 36, 0.08), transparent 70%);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(251, 191, 36, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55), 0 0 32px rgba(251, 191, 36, 0.12);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.2);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--color-text-mute);
  font-size: 15px;
  margin: 0;
}

/* ===== Features ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-item {
  background: rgba(20, 23, 35, 0.5);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: border-color var(--transition), transform var(--transition);
}

.feature-item:hover {
  border-color: var(--color-border-strong);
  transform: translateY(-2px);
}

.feature-item h3 {
  font-size: 18px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 10px;
}

.feature-num {
  font-size: 12px;
  font-weight: 800;
  color: var(--color-light);
  letter-spacing: 0.14em;
  background: rgba(251, 191, 36, 0.1);
  padding: 4px 8px;
  border-radius: 6px;
}

.feature-item p {
  color: var(--color-text-mute);
  margin: 0;
  font-size: 15px;
}

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  align-items: stretch;
}

.price-card {
  position: relative;
  background: rgba(20, 23, 35, 0.5);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}

.price-card-featured {
  border: 1px solid rgba(251, 191, 36, 0.5);
  background:
    linear-gradient(180deg, rgba(251, 191, 36, 0.06), rgba(20, 23, 35, 0.5)),
    rgba(20, 23, 35, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 32px rgba(251, 191, 36, 0.15);
  transform: translateY(-12px);
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-light), var(--color-glow));
  color: #1a1408;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 999px;
  letter-spacing: 0.12em;
  box-shadow: var(--glow-warm);
}

.plan-name {
  font-size: 18px;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.plan-desc {
  color: var(--color-text-mute);
  font-size: 14px;
  margin-bottom: 22px;
  min-height: 42px;
}

.plan-price {
  margin: 0 0 24px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-num {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}

.price-unit {
  color: var(--color-text-mute);
  font-size: 13px;
}

.plan-features {
  flex: 1;
  margin-bottom: 24px;
}

.plan-features li {
  position: relative;
  padding: 10px 0 10px 26px;
  font-size: 14px;
  color: var(--color-text);
  border-bottom: 1px dashed var(--color-border);
}

.plan-features li:last-child {
  border-bottom: 0;
}

.plan-features li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-light) 0%, transparent 70%);
}

/* ===== FAQ ===== */
.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(20, 23, 35, 0.5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0 22px;
  transition: border-color var(--transition), background var(--transition);
}

.faq-item[open] {
  background: rgba(20, 23, 35, 0.85);
  border-color: var(--color-border-strong);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 36px 18px 0;
  position: relative;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}

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

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-text-mute);
  border-bottom: 2px solid var(--color-text-mute);
  transform: translateY(-70%) rotate(45deg);
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
  border-color: var(--color-light);
}

.faq-item p {
  margin: 0 0 18px;
  color: var(--color-text-mute);
  font-size: 15px;
}

/* ===== CTA ===== */
.cta {
  position: relative;
  padding: 112px 0;
  text-align: center;
  overflow: hidden;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(251, 191, 36, 0.18), transparent 70%),
    radial-gradient(800px 400px at 50% 100%, rgba(99, 102, 241, 0.12), transparent 70%);
  pointer-events: none;
}

.cta h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  margin-bottom: 14px;
}

.cta p {
  color: var(--color-text-mute);
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.cta-note {
  font-size: 13px;
  color: var(--color-text-dim);
  margin: 0;
}

.cta-note a {
  color: var(--color-text-mute);
  border-bottom: 1px dashed var(--color-text-dim);
}

/* ===== Footer ===== */
.site-footer {
  background: #04050a;
  color: var(--color-text-mute);
  padding: 56px 0 32px;
  border-top: 1px solid var(--color-border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}

.site-footer .logo {
  color: #fff;
}

.footer-copy {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--color-text-dim);
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-nav a {
  color: var(--color-text-mute);
  font-size: 14px;
}

.footer-nav a:hover {
  color: var(--color-light);
}

.copyright {
  grid-column: 1 / -1;
  margin: 24px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  font-size: 13px;
  color: var(--color-text-dim);
  text-align: center;
}

/* ===== Wishlist Section ===== */
.wishlist {
  position: relative;
  padding: 96px 0 112px;
  text-align: center;
  background:
    linear-gradient(180deg, transparent, rgba(12, 14, 24, 0.6) 50%, transparent),
    var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.wishlist::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 240px;
  background: radial-gradient(closest-side, rgba(251, 191, 36, 0.14), transparent 70%);
  pointer-events: none;
  filter: blur(8px);
}

.wishlist-inner {
  position: relative;
  z-index: 1;
}

.wishlist .section-lead {
  margin-bottom: 36px;
}

/* ===== Wishlist Dialog ===== */
.wl-dialog {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--color-text);
  max-width: min(480px, calc(100vw - 32px));
  width: 100%;
  margin: auto;
}

.wl-dialog::backdrop {
  background: rgba(2, 3, 8, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.wl-dialog[open] {
  animation: wl-dialog-in 0.28s ease-out;
}

@keyframes wl-dialog-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.wl-dialog-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(28, 32, 48, 0.95), rgba(12, 14, 24, 0.98));
  border: 1px solid var(--color-border-strong);
  border-radius: 20px;
  padding: 40px 32px 32px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 60px rgba(251, 191, 36, 0.08);
  overflow: hidden;
}

.wl-dialog-card::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 240px;
  background: radial-gradient(closest-side, rgba(251, 191, 36, 0.18), transparent 70%);
  pointer-events: none;
  filter: blur(4px);
}

.wl-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-text-mute);
  cursor: pointer;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
  z-index: 2;
}

.wl-close:hover {
  color: var(--color-light);
  background: rgba(251, 191, 36, 0.08);
  border-color: rgba(251, 191, 36, 0.4);
}

.wl-view {
  position: relative;
  z-index: 1;
  text-align: center;
}

.wl-eyebrow {
  display: inline-block;
  padding: 4px 12px;
  margin: 0 0 16px;
  background: rgba(251, 191, 36, 0.08);
  color: var(--color-light);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.wl-title {
  font-size: 22px;
  margin-bottom: 10px;
  color: #fff;
}

.wl-lead {
  color: var(--color-text-mute);
  font-size: 14px;
  margin: 0 0 28px;
  line-height: 1.7;
}

.wl-form {
  text-align: left;
}

.wl-field {
  margin-bottom: 18px;
}

.wl-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.wl-field input {
  width: 100%;
  padding: 13px 16px;
  background: rgba(7, 8, 15, 0.7);
  border: 1px solid var(--color-border-strong);
  border-radius: 10px;
  color: var(--color-text);
  font-size: 15px;
  font-family: inherit;
  line-height: 1.5;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.wl-field input::placeholder {
  color: var(--color-text-dim);
}

.wl-field input:hover {
  border-color: #3a4060;
}

.wl-field input:focus {
  outline: none;
  border-color: var(--color-light);
  background: rgba(7, 8, 15, 0.9);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.18);
}

.wl-field input:invalid:not(:placeholder-shown) {
  border-color: #ef4444;
}

.wl-form .btn-block {
  margin-top: 8px;
}

.wl-form .btn-block:disabled,
.wl-form .btn-block[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
  filter: saturate(0.6);
  transform: none;
}

.wl-form .btn-block:disabled:hover {
  transform: none;
  box-shadow: none;
}

.wl-note {
  margin: 16px 0 0;
  font-size: 12px;
  color: var(--color-text-dim);
  text-align: center;
  line-height: 1.6;
}

/* Wishlist legal block */
.wl-legal {
  margin: 8px 0 18px;
  padding: 14px 16px;
  background: rgba(7, 8, 15, 0.5);
  border: 1px solid var(--color-border);
  border-radius: 10px;
}

.wl-legal-title {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.08em;
}

.wl-legal-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  color: var(--color-text-mute);
  line-height: 1.7;
}

.wl-legal-list li {
  position: relative;
  padding-left: 12px;
}

.wl-legal-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--color-text-dim);
}

.wl-legal-list a {
  color: var(--color-light);
  border-bottom: 1px dashed rgba(251, 191, 36, 0.5);
}

.wl-legal-list a:hover {
  color: var(--color-light-soft);
}

/* Wishlist consent checkboxes */
.wl-consent {
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wl-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.6;
}

.wl-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.wl-check-box {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 1px solid var(--color-border-strong);
  border-radius: 4px;
  background: rgba(7, 8, 15, 0.7);
  display: inline-grid;
  place-items: center;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.wl-check-box::after {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid #1a1408;
  border-bottom: 2px solid #1a1408;
  transform: rotate(-45deg) translate(1px, -1px);
  opacity: 0;
  transition: opacity var(--transition);
}

.wl-check:hover .wl-check-box {
  border-color: var(--color-light);
}

.wl-check input[type="checkbox"]:focus-visible + .wl-check-box {
  outline: none;
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.25);
  border-color: var(--color-light);
}

.wl-check input[type="checkbox"]:checked + .wl-check-box {
  background: var(--color-light);
  border-color: var(--color-light);
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.35);
}

.wl-check input[type="checkbox"]:checked + .wl-check-box::after {
  opacity: 1;
}

.wl-check-text {
  flex: 1;
}

.wl-check-text a {
  color: var(--color-light);
  border-bottom: 1px dashed rgba(251, 191, 36, 0.5);
}

.wl-check-text a:hover {
  color: var(--color-light-soft);
}

.wl-required {
  display: inline-block;
  margin-right: 6px;
  padding: 1px 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: #d4453a;
  border-radius: 3px;
  vertical-align: 1px;
}

/* ===== Legal page ===== */
.legal {
  padding: 80px 0 96px;
}

.legal-title {
  font-size: clamp(1.8rem, 3.6vw, 2.4rem);
  text-align: center;
  margin-bottom: 8px;
}

.legal-meta {
  text-align: center;
  color: var(--color-text-dim);
  font-size: 13px;
  margin-bottom: 40px;
}

.legal h2 {
  margin-top: 40px;
  margin-bottom: 12px;
  font-size: 18px;
  color: #fff;
  padding-left: 12px;
  border-left: 3px solid var(--color-light);
  line-height: 1.4;
}

.legal p {
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.85;
}

.legal-list {
  margin: 0 0 1em;
  padding-left: 1.2em;
  list-style: disc;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.85;
}

.legal-list li {
  margin-bottom: 4px;
}

.legal-back {
  margin-top: 56px;
  text-align: center;
  font-size: 14px;
}

/* Done view */
.wl-view-done {
  padding: 8px 0 4px;
}

.wl-done-glow {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(closest-side, rgba(251, 191, 36, 0.25), transparent 70%);
  pointer-events: none;
  filter: blur(2px);
  z-index: 0;
}

.wl-done-icon {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.4);
  box-shadow: 0 0 32px rgba(251, 191, 36, 0.25);
}

.wl-view-done .wl-title,
.wl-view-done .wl-lead {
  position: relative;
  z-index: 1;
}

.wl-view-done .btn-block {
  margin-top: 8px;
  position: relative;
  z-index: 1;
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 56px;
    text-align: center;
  }
  .eyebrow {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions,
  .hero-meta {
    justify-content: center;
  }
  .phone-frame {
    transform: none;
    max-width: 360px;
  }
  .phone-frame:hover {
    transform: none;
  }
  .service-grid,
  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .price-card-featured {
    transform: none;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }
  .nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(7, 8, 15, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav.is-open {
    max-height: 480px;
  }
  .nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 20px;
  }
  .nav li {
    border-bottom: 1px solid var(--color-border);
  }
  .nav li:last-child {
    border-bottom: 0;
    padding-top: 12px;
  }
  .nav a {
    display: block;
    padding: 14px 0;
  }
  .nav .nav-cta {
    text-align: center;
    padding: 12px 16px;
  }

  .section,
  .cta {
    padding: 80px 0;
  }
  .hero {
    padding: 64px 0 88px;
  }
  .wishlist {
    padding: 72px 0 88px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }
  .hero-actions .btn,
  .cta-actions .btn {
    flex: 1 1 auto;
  }
  .btn-store {
    min-width: 140px;
  }
  .phone-frame {
    max-width: 300px;
  }
  .wl-dialog-card {
    padding: 36px 22px 26px;
  }
  .wl-title {
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
  .phone-frame {
    transform: none !important;
  }
}
