:root {
  color-scheme: dark;
  --bg: #070912;
  --bg-deep: #04050a;
  --ink: #fff7e8;
  --ink-dark: #15110e;
  --muted: rgba(255, 247, 232, 0.68);
  --muted-dark: #6f6254;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(20, 14, 8, 0.12);
  --accent: #ff6537;
  --accent-2: #53d8ca;
  --gold: #ffcf8a;
  --paper: rgba(255, 249, 238, 0.94);
  --glass: rgba(255, 255, 255, 0.075);
  --shadow: 0 34px 110px rgba(0, 0, 0, 0.34);
  --font: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 101, 55, 0.18), transparent 24rem),
    radial-gradient(circle at 84% 18%, rgba(83, 216, 202, 0.12), transparent 28rem),
    linear-gradient(180deg, #070912 0%, #0d0b14 44%, #fff8ef 44%, #fff8ef 100%);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: radial-gradient(circle at 50% 20%, #000 0 34%, transparent 72%);
  pointer-events: none;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(238, 232, 222, 0.94);
  border-bottom: 1px solid rgba(24, 16, 8, 0.1);
  color: var(--ink-dark);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.brand-mark {
  width: 22px;
  height: 22px;
  border: 1.5px solid #c0341a;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
}

.brand-mark::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c0341a;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
}

.site-header nav a {
  color: #71685f;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.site-header nav a:hover {
  color: #c0341a;
}

.checkout-notice {
  position: relative;
  z-index: 2;
  margin: 24px clamp(20px, 6vw, 88px) 0;
  border: 1px solid rgba(83, 216, 202, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  padding: 18px 20px;
  backdrop-filter: blur(18px);
}

.checkout-notice.cancel {
  border-color: rgba(255, 101, 55, 0.34);
}

.checkout-notice strong {
  display: block;
  color: var(--gold);
  font-size: 1rem;
}

.checkout-notice p {
  margin: 6px 0 0;
  color: var(--muted);
}

.hero {
  position: relative;
  min-height: calc(100svh - 70px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  padding: clamp(76px, 9vw, 128px) clamp(20px, 6vw, 88px) clamp(70px, 8vw, 110px);
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: #05060a;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  opacity: 0.92;
  filter: saturate(1.15) contrast(1.05) brightness(0.92);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 6, 10, 0.95) 0%, rgba(5, 6, 10, 0.78) 38%, rgba(5, 6, 10, 0.28) 68%, rgba(5, 6, 10, 0.08) 100%),
    linear-gradient(180deg, rgba(5, 6, 10, 0.24), rgba(5, 6, 10, 0.82));
}

.hero::after {
  content: "";
  position: absolute;
  left: clamp(20px, 6vw, 88px);
  right: clamp(20px, 6vw, 88px);
  bottom: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 207, 138, 0.5), transparent);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-left: 28px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), var(--gold), var(--accent-2), transparent);
  box-shadow: 0 0 38px rgba(255, 101, 55, 0.45);
}

.eyebrow {
  margin: 0 0 16px;
  color: #ffb38f;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.12;
}

h1 {
  max-width: 860px;
  color: #fff8e9;
  font-size: clamp(2.75rem, 7vw, 7rem);
  font-weight: 900;
  text-shadow: 0 18px 70px rgba(0, 0, 0, 0.6);
}

h1 em,
h2 em {
  color: var(--accent);
  font-style: normal;
  text-shadow: 0 0 34px rgba(255, 101, 55, 0.32);
}

h2 {
  font-size: clamp(2rem, 4vw, 4.6rem);
}

.lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 247, 232, 0.76);
  font-size: clamp(0.95rem, 1.3vw, 1.12rem);
  line-height: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-link,
.secondary-link,
.secondary-button,
.submit-button,
.checkout-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
}

.primary-link,
.submit-button,
.checkout-button {
  border: 1px solid rgba(255, 101, 55, 0.78);
  background: linear-gradient(135deg, #ff6537, #d93b1e);
  color: #fff;
  box-shadow: 0 20px 70px rgba(255, 101, 55, 0.25);
}

.secondary-link,
.secondary-button {
  border: 1px solid rgba(255, 247, 232, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 247, 232, 0.86);
  backdrop-filter: blur(14px);
}

.secondary-button {
  color: var(--ink-dark);
  background: #fff;
  border-color: var(--line-dark);
  cursor: pointer;
}

.primary-link:hover,
.submit-button:hover,
.checkout-button:hover {
  transform: translateY(-2px);
}

.secondary-link:hover,
.secondary-button:hover {
  border-color: rgba(255, 101, 55, 0.45);
}

.secondary-button:disabled,
.submit-button:disabled,
.checkout-button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-facts span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 247, 232, 0.66);
  padding: 8px 11px;
  font-size: 0.72rem;
  font-weight: 800;
}

.day-visual {
  position: relative;
  z-index: 2;
  min-height: 560px;
  display: grid;
  align-content: center;
  gap: 16px;
}

.visual-orbit {
  position: absolute;
  inset: 50%;
  width: min(480px, 82vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 207, 138, 0.28);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 120px rgba(255, 101, 55, 0.12);
}

.visual-orbit::before {
  content: "";
  position: absolute;
  inset: 64px;
  border: 1px dashed rgba(83, 216, 202, 0.28);
  border-radius: inherit;
}

.guide-creature {
  position: absolute;
  right: 4%;
  top: 2%;
  width: min(190px, 34vw);
  border-radius: 24px;
  filter: drop-shadow(0 28px 50px rgba(0,0,0,.45));
  opacity: 0.92;
}

.visual-card,
.visual-grid > div,
.form-section,
.result-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.visual-card {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  padding: clamp(24px, 4vw, 42px);
}

.visual-card span,
.visual-grid span,
.result-card span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.visual-card strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: clamp(1.7rem, 3.6vw, 3rem);
  line-height: 1.22;
}

.visual-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.visual-grid > div {
  min-height: 132px;
  border-radius: 20px;
  padding: 16px;
}

.visual-grid p {
  margin: 10px 0 0;
  color: rgba(255, 247, 232, 0.86);
  font-weight: 800;
  line-height: 1.48;
}

.intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  gap: 34px;
  align-items: start;
  padding: 110px clamp(20px, 6vw, 88px);
  background: linear-gradient(180deg, #080914 0%, #11101b 100%);
}

.intro::after {
  content: "TODAY / ROUTE / ACTION";
  position: absolute;
  right: 0;
  bottom: 10px;
  max-width: 100%;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.045);
  font-size: clamp(3.2rem, 10vw, 10rem);
  font-weight: 900;
  white-space: nowrap;
}

.intro > * {
  position: relative;
  z-index: 1;
}

.intro p {
  max-width: 740px;
  color: var(--muted);
}

.type-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.type-list span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
  padding: 9px 13px;
  color: #ffe1d1;
  font-size: 0.88rem;
  font-weight: 900;
}

.plan-guide {
  position: relative;
  padding: 100px clamp(20px, 6vw, 88px) 80px;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 101, 55, 0.14), transparent 22rem),
    radial-gradient(circle at 86% 14%, rgba(83, 216, 202, 0.12), transparent 24rem),
    #fff8ef;
  color: var(--ink-dark);
  overflow: hidden;
}

.plan-guide::after {
  content: "500 / MONTHLY ROUTE";
  position: absolute;
  right: 0;
  top: 18px;
  max-width: 100%;
  overflow: hidden;
  color: rgba(15, 10, 4, 0.045);
  font-size: clamp(3rem, 9vw, 9rem);
  font-weight: 900;
  white-space: nowrap;
}

.plan-guide-head {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}

.plan-guide-head .eyebrow {
  color: #c0341a;
}

.plan-guide-head p {
  color: var(--muted-dark);
}

.plan-guide-grid {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.plan-guide-grid article {
  min-height: 250px;
  border: 1px solid rgba(20, 14, 8, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 24px 80px rgba(34, 20, 12, 0.1);
  padding: 24px;
}

.plan-guide-grid span {
  color: #c0341a;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.plan-guide-grid h3 {
  margin: 16px 0 10px;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.3;
}

.plan-guide-grid p {
  color: var(--muted-dark);
}

.plan-guide-grid strong {
  display: inline-flex;
  margin-top: 12px;
  border-radius: 999px;
  background: #11101b;
  color: #fff8e9;
  padding: 8px 12px;
  font-size: 0.85rem;
}

.form-section {
  position: relative;
  max-width: 1060px;
  margin: clamp(40px, 6vw, 72px) auto 0;
  border-radius: 28px;
  padding: clamp(24px, 5vw, 52px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,248,239,.96));
  color: var(--ink-dark);
  overflow: hidden;
}

.form-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 8%, rgba(255, 101, 55, 0.12), transparent 18rem),
    radial-gradient(circle at 16% 34%, rgba(83, 216, 202, 0.12), transparent 20rem);
  pointer-events: none;
}

.form-section > * {
  position: relative;
  z-index: 1;
}

.form-visual {
  position: absolute;
  right: -24px;
  top: -10px;
  z-index: 0;
  width: min(260px, 34vw);
  opacity: 0.28;
  pointer-events: none;
}

.form-visual img {
  width: 100%;
  display: block;
  border-radius: 28px;
}

.form-head {
  max-width: 760px;
}

.form-head .eyebrow,
.result-panel .eyebrow,
.purchase-panel .eyebrow,
.status-panel .eyebrow {
  color: #c0341a;
}

.form-head p,
.status-panel p,
.purchase-panel p {
  color: var(--muted-dark);
}

.free-highlight {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
  border: 1px solid rgba(192, 52, 26, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  padding: 9px 14px;
  color: var(--muted-dark);
  font-size: 0.88rem;
}

.free-highlight strong {
  color: #c0341a;
}

.compass-form {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field-row.thirds {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

label {
  display: grid;
  gap: 8px;
  color: #4f463d;
  font-size: 0.88rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(31, 22, 13, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink-dark);
  font: inherit;
  font-weight: 700;
  padding: 13px 15px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 101, 55, 0.72);
  box-shadow: 0 0 0 4px rgba(255, 101, 55, 0.14);
}

.notice {
  margin: 4px 0 0;
  border-left: 3px solid var(--accent);
  color: var(--muted-dark);
  padding-left: 12px;
  font-size: 0.9rem;
}

.turnstile-area {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.turnstile-note {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.84rem;
}

.submit-button,
.checkout-button {
  width: fit-content;
  cursor: pointer;
}

.form-message {
  min-height: 1.5em;
  margin: 0;
  color: #1f514c;
  font-weight: 900;
}

.form-message.error {
  color: #a64230;
}

.result-panel {
  margin-top: 40px;
  border-top: 1px solid rgba(20, 14, 8, 0.1);
  padding-top: 34px;
}

.result-note {
  margin: 8px 0 18px;
  color: var(--muted-dark);
  font-weight: 800;
}

.result-card {
  border-radius: 26px;
  padding: clamp(20px, 4vw, 32px);
  background: #0a0c14;
  color: var(--ink);
  overflow: hidden;
}

.result-card-full {
  display: grid;
  gap: 20px;
}

.result-theme {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.result-theme strong {
  display: block;
  margin-top: 8px;
  color: #fff8e9;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.35;
}

.result-block {
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 20px;
  background: rgba(255,255,255,.055);
  padding: 18px;
}

.result-block h3,
.result-reason span,
.result-grid span {
  margin: 0;
  color: #ffcf8a;
  font-size: 0.95rem;
  line-height: 1.35;
}

.result-card ol {
  margin: 14px 0 0;
  padding-left: 22px;
}

.result-card li {
  margin: 8px 0;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.result-grid > div,
.result-reason {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.065);
  padding: 16px;
}

.result-grid p,
.result-reason p {
  margin: 8px 0 0;
  color: rgba(255, 247, 232, 0.72);
}

.plan-split {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.purchase-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(31, 22, 13, 0.12);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,.88), rgba(255,238,225,.9));
  padding: 22px;
  box-shadow: 0 20px 70px rgba(34, 20, 12, 0.08);
}

.purchase-panel h3 {
  margin: 0;
  line-height: 1.35;
  font-size: 1.3rem;
}

.purchase-panel p {
  margin: 8px 0 0;
}

.purchase-panel p strong {
  color: #15110e;
}

.purchase-benefits {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.purchase-benefits li {
  position: relative;
  padding: 10px 12px 10px 34px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .62);
  border: 1px solid rgba(21, 17, 14, .08);
  color: #32291f;
  font-size: .88rem;
  line-height: 1.55;
}

.purchase-benefits li::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 1.05em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3fd8ca, #ff6537);
  box-shadow: 0 0 0 4px rgba(63, 216, 202, .12);
}

.diagnosis-panel .purchase-benefits li::before {
  background: linear-gradient(135deg, #ffb84d, #7c5cff);
  box-shadow: 0 0 0 4px rgba(255, 184, 77, .12);
}

.diagnosis-panel {
  background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(232, 248, 245, .88));
}

.status-panel {
  display: grid;
  gap: 18px;
  margin-top: 32px;
  border-top: 1px solid rgba(20, 14, 8, 0.1);
  padding-top: 30px;
}

.status-panel h2 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.status-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.status-result {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(31, 22, 13, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  padding: 18px;
}

.status-result strong {
  color: #1f514c;
  font-size: 1rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 30px clamp(20px, 6vw, 88px);
  border-top: 1px solid rgba(20, 14, 8, 0.1);
  background: #11101b;
  color: rgba(255, 247, 232, 0.5);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-bg img {
    object-position: 74% center;
    opacity: 0.58;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(5, 6, 10, 0.82), rgba(5, 6, 10, 0.93));
  }

  .day-visual {
    min-height: auto;
  }

  .intro,
  .plan-guide-grid,
  .field-row,
  .field-row.thirds {
    grid-template-columns: 1fr;
  }

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

  .purchase-panel,
  .status-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 18px;
  }

  .site-header nav {
    gap: 12px;
  }

  .site-header nav a {
    font-size: 0.74rem;
  }

  .site-header nav a:not(:first-child) {
    display: none;
  }

  .hero {
    width: 100%;
    max-width: 100vw;
    padding: 72px 20px 72px;
  }

  .hero > *,
  .day-visual,
  .visual-card,
  .visual-grid,
  .visual-grid > div {
    min-width: 0;
    max-width: 100%;
  }

  .hero-copy {
    width: 100%;
    max-width: calc(100vw - 40px);
    min-width: 0;
    padding-left: 12px;
  }

  h1 {
    max-width: calc(100vw - 76px);
    font-size: clamp(1.82rem, 8.7vw, 2.55rem);
    line-height: 1.14;
    overflow-wrap: anywhere;
    word-break: break-all;
    line-break: anywhere;
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.8rem);
  }

  .lead {
    max-width: calc(100vw - 76px);
    font-size: 0.92rem;
    line-height: 1.9;
    overflow-wrap: anywhere;
    word-break: break-all;
    line-break: anywhere;
  }

  .primary-link,
  .secondary-link,
  .secondary-button,
  .submit-button,
  .checkout-button {
    width: 100%;
  }

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

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

  .visual-card strong,
  .visual-grid p {
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .visual-grid > div {
    min-height: 96px;
  }

  .guide-creature {
    width: 120px;
    right: 0;
    top: -12px;
    opacity: 0.55;
  }

  .intro {
    padding: 82px 20px;
  }

  .plan-guide {
    padding: 78px 20px 68px;
  }

  .plan-guide-head {
    text-align: left;
  }

  .form-section {
    margin: 32px 12px 72px;
    padding: 24px 18px;
    border-radius: 24px;
  }

  .free-highlight {
    border-radius: 18px;
  }

  .site-footer {
    flex-direction: column;
    padding: 26px 20px;
  }
}

/* Distinct Tenmei Compass art direction: compact daily-lab, not the main HP theme park. */
body {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 101, 55, 0.18), transparent 18rem),
    radial-gradient(circle at 86% 6%, rgba(83, 216, 202, 0.16), transparent 22rem),
    linear-gradient(180deg, #080913 0%, #10131f 36%, #f8f0e5 36%, #fff8ef 100%);
}

body::before {
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000 0 42%, transparent 72%);
}

.site-header {
  background: rgba(12, 14, 24, 0.8);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  color: #fff7e8;
}

.brand-mark {
  border-color: var(--accent-2);
}

.brand-mark::after {
  background: var(--accent);
}

.site-header nav a {
  color: rgba(255, 247, 232, 0.66);
}

.site-header nav a:hover {
  color: #fff7e8;
}

.hero {
  min-height: auto;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 0.82fr);
  padding-top: clamp(62px, 7vw, 96px);
  padding-bottom: clamp(54px, 7vw, 86px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.06), transparent 34%),
    radial-gradient(circle at 62% 44%, rgba(255, 207, 138, .12), transparent 22rem);
}

.hero-bg {
  inset: clamp(18px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 34px 120px rgba(0, 0, 0, .36);
}

.hero-bg img {
  object-position: 66% center;
  opacity: .62;
  filter: saturate(1.2) contrast(1.08) brightness(.86);
}

.hero::before {
  inset: clamp(18px, 4vw, 42px);
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(8, 9, 19, .96) 0%, rgba(8, 9, 19, .82) 38%, rgba(8, 9, 19, .24) 100%),
    radial-gradient(circle at 74% 36%, rgba(83, 216, 202, .22), transparent 18rem);
}

.hero::after {
  left: clamp(44px, 8vw, 118px);
  right: auto;
  bottom: clamp(42px, 6vw, 74px);
  width: min(520px, 48vw);
  background: linear-gradient(90deg, var(--accent-2), var(--accent), transparent);
}

.hero-copy {
  max-width: 660px;
  padding: clamp(20px, 3vw, 36px);
}

.hero-copy::before {
  left: 0;
  top: 22px;
  bottom: 22px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent), var(--gold));
}

h1 {
  font-size: clamp(2.45rem, 5.8vw, 5.75rem);
  letter-spacing: 0;
}

h1 em,
h2 em {
  color: #53d8ca;
  text-shadow: 0 0 34px rgba(83, 216, 202, .28);
}

.lead {
  max-width: 600px;
}

.primary-link,
.submit-button,
.checkout-button {
  border-color: rgba(83, 216, 202, .68);
  background: linear-gradient(135deg, #3fd8ca, #ff6537 72%);
  box-shadow: 0 20px 70px rgba(83, 216, 202, .18);
}

.day-visual {
  min-height: 500px;
  align-content: end;
  padding: 22px;
}

.visual-orbit {
  width: min(400px, 74vw);
  border-color: rgba(83, 216, 202, .28);
  border-radius: 34% 66% 45% 55%;
  transform: translate(-50%, -50%) rotate(-8deg);
  background: radial-gradient(circle, rgba(83,216,202,.08), transparent 68%);
}

.guide-creature {
  right: 3%;
  top: -10%;
  width: min(250px, 38vw);
  border-radius: 34px;
  transform: rotate(6deg);
  opacity: 1;
  box-shadow: 0 28px 90px rgba(83,216,202,.18);
}

.visual-card {
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,.21), rgba(255,255,255,.08));
}

.visual-card strong {
  font-size: clamp(1.45rem, 3vw, 2.35rem);
}

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

.visual-grid > div {
  min-height: 82px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.07));
}

.form-visual {
  right: 34px;
  top: 32px;
  width: min(300px, 32vw);
  opacity: .92;
  filter: drop-shadow(0 28px 60px rgba(83,216,202,.24));
}

.form-head {
  max-width: 620px;
}

.form-visual img {
  background: linear-gradient(145deg, rgba(8, 11, 22, .92), rgba(83, 216, 202, .14));
  box-shadow: 0 24px 80px rgba(0,0,0,.16);
}

.visual-grid p {
  margin: 0;
}

.intro {
  background:
    radial-gradient(circle at 12% 30%, rgba(83,216,202,.13), transparent 20rem),
    linear-gradient(180deg, #10131f 0%, #171421 100%);
}

.route-lane {
  position: relative;
  padding: 96px clamp(20px, 6vw, 88px);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 101, 55, .22), transparent 22rem),
    radial-gradient(circle at 10% 74%, rgba(83, 216, 202, .18), transparent 22rem),
    linear-gradient(135deg, #171421 0%, #0b0d17 100%);
  overflow: hidden;
}

.route-lane::before {
  content: "DAILY ROUTE";
  position: absolute;
  left: -2vw;
  top: 12px;
  color: rgba(255, 255, 255, .045);
  font-size: clamp(3rem, 10vw, 9rem);
  font-weight: 900;
  white-space: nowrap;
}

.route-head,
.route-grid {
  position: relative;
  z-index: 1;
}

.route-head {
  max-width: 820px;
  margin-bottom: 28px;
}

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

.route-grid article {
  min-height: 270px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.045));
  box-shadow: 0 28px 90px rgba(0,0,0,.22);
  padding: 24px;
}

.route-grid span {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(83,216,202,.14);
  color: #9af1e8;
  padding: 5px 10px;
  font-size: .72rem;
  font-weight: 900;
}

.route-grid strong {
  display: block;
  margin-top: 18px;
  color: #fff8e9;
  font-size: 1.35rem;
  line-height: 1.35;
}

.route-grid p {
  margin: 16px 0 0;
  color: rgba(255,247,232,.66);
}

.daily-burst {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .72fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  padding: 108px clamp(20px, 6vw, 88px);
  background:
    radial-gradient(circle at 16% 22%, rgba(255,207,138,.22), transparent 24rem),
    linear-gradient(180deg, #0b0d17 0%, #151322 100%);
  overflow: hidden;
}

.daily-burst-media {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 44px 140px rgba(0,0,0,.38);
  transform: rotate(-1.4deg);
}

.daily-burst-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(8,9,18,.36));
  pointer-events: none;
}

.daily-burst-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.04);
}

.daily-burst-copy {
  color: #fff8e9;
}

.daily-burst-copy p:not(.eyebrow) {
  color: rgba(255,247,232,.72);
  line-height: 2;
}

.plan-guide {
  background:
    radial-gradient(circle at 10% 18%, rgba(83,216,202,.18), transparent 22rem),
    radial-gradient(circle at 90% 12%, rgba(255,101,55,.14), transparent 24rem),
    #f8f0e5;
}

.form-section {
  border-radius: 34px;
  box-shadow: 0 36px 120px rgba(27, 18, 10, .18);
}

.result-card {
  background:
    radial-gradient(circle at 90% 8%, rgba(83,216,202,.16), transparent 14rem),
    #0b0e18;
}

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

  .route-grid,
  .daily-burst {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    background: rgba(12, 14, 24, .9);
  }

  .hero {
    padding: 28px 14px 56px;
  }

  .hero-bg,
  .hero::before {
    inset: 10px;
    border-radius: 26px;
  }

  .hero-copy {
    max-width: 100%;
    padding: 42px 18px 10px 22px;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.05rem, 10vw, 3rem);
    word-break: auto-phrase;
  }

  .lead {
    max-width: none;
    word-break: auto-phrase;
  }

  .day-visual {
    padding: 0 16px 18px;
    min-height: 410px;
  }

  .guide-creature {
    width: 116px;
    right: 22px;
    top: 8px;
  }

  .route-lane,
  .daily-burst {
    padding: 76px 20px;
  }

  .daily-burst-media {
    border-radius: 24px;
    transform: none;
  }

  .form-visual {
    position: relative;
    right: auto;
    top: auto;
    width: min(220px, 70vw);
    margin: 0 auto 18px;
    opacity: 1;
  }
}

/* LampDjinn update: make the Today's AI guide feel more like an adventure host. */
.guide-creature {
  width: min(300px, 42vw);
  border-radius: 34px;
  box-shadow: 0 30px 90px rgba(255, 191, 82, .28);
  filter: saturate(1.08) drop-shadow(0 24px 54px rgba(255, 202, 89, .18));
}

.form-visual {
  width: min(340px, 34vw);
  filter: drop-shadow(0 30px 72px rgba(255, 191, 82, .24));
}

.form-visual img {
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(24, 12, 42, .94), rgba(255, 191, 82, .16));
  box-shadow: 0 28px 90px rgba(0,0,0,.22);
}

@media (max-width: 720px) {
  .guide-creature {
    width: 140px;
    right: 18px;
    top: 8px;
  }

  .form-visual {
    width: min(230px, 72vw);
  }
}

/* Optional-fields accordion: keeps the free form short (lower friction, higher completion). */
.form-optional {
  border: 1px dashed rgba(31, 22, 13, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
}

.form-optional > summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  color: #4f463d;
  font-weight: 900;
  font-size: 0.88rem;
}

.form-optional > summary::-webkit-details-marker {
  display: none;
}

.form-optional > summary::before {
  content: "＋";
  color: #c0341a;
  font-weight: 900;
}

.form-optional[open] > summary::before {
  content: "−";
}

.form-optional[open] > summary {
  border-bottom: 1px solid rgba(31, 22, 13, 0.1);
}

.form-optional-inner {
  display: grid;
  gap: 18px;
  padding: 18px 16px;
}
