:root {
  --ink: #18231e;
  --ink-soft: #516059;
  --paper: #f7f2e9;
  --paper-deep: #eee6d8;
  --card: rgba(255, 253, 248, 0.82);
  --line: rgba(24, 35, 30, 0.14);
  --green: #275b43;
  --green-deep: #173d2c;
  --coral: #ef765e;
  --yellow: #e8bd54;
  --shadow: 0 30px 80px rgba(49, 45, 35, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  line-height: 1.65;
  min-width: 320px;
  overflow-x: hidden;
}

button, input { font: inherit; }
button { color: inherit; }
a { color: inherit; }

.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.page-glow {
  position: fixed;
  z-index: -1;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.42;
  pointer-events: none;
}

.page-glow-one { right: -210px; top: -190px; background: radial-gradient(circle, #f1b494 0, transparent 69%); }
.page-glow-two { left: -280px; top: 760px; background: radial-gradient(circle, #c9d9b7 0, transparent 70%); }

.site-header {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.brand-mark { display: inline-flex; align-items: end; gap: 3px; height: 24px; }
.brand-mark i { display: block; width: 4px; border-radius: 6px; background: var(--coral); transform: rotate(8deg); }
.brand-mark i:nth-child(1) { height: 13px; }
.brand-mark i:nth-child(2) { height: 23px; background: var(--green); }
.brand-mark i:nth-child(3) { height: 17px; background: var(--yellow); }

.header-note {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.hero {
  min-height: 610px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 56px;
  padding-block: 74px 92px;
}

.eyebrow, .section-number {
  margin: 0 0 21px;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 31px; height: 1px; background: var(--green); }

h1, h2 {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  letter-spacing: -0.055em;
  font-weight: 600;
  line-height: 1.26;
}

h1 { margin: 0; font-size: clamp(45px, 5.5vw, 78px); }
h1 em { color: var(--coral); font-style: normal; white-space: nowrap; }

.lead { max-width: 610px; margin: 31px 0; font-size: 17px; color: var(--ink-soft); }

.hero-facts { display: flex; align-items: center; flex-wrap: wrap; gap: 13px; color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.hero-facts i { width: 4px; height: 4px; border-radius: 50%; background: var(--coral); }

.record-art { position: relative; width: min(100%, 470px); aspect-ratio: 1; justify-self: end; }
.record {
  position: absolute;
  inset: 12%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: repeating-radial-gradient(circle at center, transparent 0 13px, rgba(255,255,255,.028) 14px 15px), radial-gradient(circle at 31% 27%, #38493f, #101d17 68%);
  box-shadow: var(--shadow), inset 0 0 0 2px rgba(255,255,255,.06);
  animation: float 6s ease-in-out infinite;
}

.record::after { content: ""; position: absolute; inset: 3%; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; }
.record-label { width: 31%; aspect-ratio: 1; display: grid; place-items: center; align-content: center; border-radius: 50%; color: var(--ink); background: var(--yellow); box-shadow: inset 0 0 0 7px rgba(255,255,255,.2); }
.record-label span { font-family: "Hiragino Mincho ProN", "Yu Mincho", serif; font-size: clamp(32px, 5vw, 57px); font-weight: 600; line-height: 1; }
.record-label small { font-size: 8px; font-weight: 700; letter-spacing: .17em; }
.orbit { position: absolute; border: 1px solid rgba(39,91,67,.23); border-radius: 50%; }
.orbit-one { inset: 1%; }
.orbit-two { inset: -6%; border-style: dashed; transform: rotate(-17deg); }
.note { position: absolute; display: grid; place-items: center; border-radius: 50%; box-shadow: 0 15px 40px rgba(49,45,35,.14); }
.note-one { width: 56px; height: 56px; right: 2%; top: 16%; background: var(--coral); color: white; transform: rotate(12deg); }
.note-two { width: 45px; height: 45px; left: 2%; bottom: 19%; background: #fffaf1; color: var(--green); transform: rotate(-9deg); }

@keyframes float { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-10px) rotate(1deg); } }

.experience {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 76px;
  padding-block: 105px;
  border-top: 1px solid var(--line);
}

h2 { margin: 0 0 26px; font-size: clamp(34px, 4vw, 54px); }
.experience-intro > p:not(.section-number) { color: var(--ink-soft); max-width: 450px; }

.steps { margin: 39px 0 0; padding: 0; list-style: none; display: grid; gap: 18px; }
.steps li { display: flex; align-items: center; gap: 15px; }
.steps li > span { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; font-size: 12px; font-weight: 700; }
.steps strong, .steps small { display: block; }
.steps strong { font-size: 14px; }
.steps small { color: var(--ink-soft); }

.creator-card {
  padding: 32px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 28px;
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.card-topline { display: flex; align-items: center; gap: 9px; min-height: 28px; margin-bottom: 27px; color: var(--ink-soft); font-size: 12px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #a7aaa5; box-shadow: 0 0 0 4px rgba(167,170,165,.14); }
.status-dot[data-state="ready"] { background: #49a56e; box-shadow: 0 0 0 4px rgba(73,165,110,.14); }
.status-dot[data-state="checking"] { background: var(--yellow); animation: pulse 1s infinite alternate; }
.status-dot[data-state="error"] { background: var(--coral); }
@keyframes pulse { to { opacity: .35; } }
.text-button { margin-left: auto; padding: 3px 0; border: 0; border-bottom: 1px solid currentColor; background: none; font-size: 11px; cursor: pointer; }

fieldset { min-width: 0; }
.type-picker { margin: 0; padding: 0; border: 0; display: grid; gap: 12px; }
.type-picker legend { margin-bottom: 13px; font-size: 13px; font-weight: 700; }
.type-option { position: relative; display: flex; align-items: center; padding: 20px 21px; border: 1px solid var(--line); border-radius: 17px; background: rgba(255,255,255,.43); cursor: pointer; transition: border-color .2s, background .2s, transform .2s; }
.type-option:hover { transform: translateY(-2px); border-color: rgba(39,91,67,.38); }
.type-option:has(input:checked) { border-color: var(--green); background: rgba(219,231,214,.58); box-shadow: inset 0 0 0 1px var(--green); }
.type-option input { position: absolute; opacity: 0; pointer-events: none; }
.option-body { display: block; padding-right: 44px; }
.option-body span, .option-body strong, .option-body small { display: block; }
.option-kicker { margin-bottom: 4px; color: var(--coral); font-size: 9px; font-weight: 700; letter-spacing: .18em; }
.option-body strong { font-size: 16px; }
.option-body small { margin-top: 3px; color: var(--ink-soft); font-size: 12px; }
.radio-mark { position: absolute; right: 21px; width: 20px; height: 20px; border: 1px solid rgba(24,35,30,.28); border-radius: 50%; }
.type-option:has(input:checked) .radio-mark { border: 6px solid var(--green); }

.human-check { margin-top: 18px; padding: 14px 15px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.35); }
.human-check > span { display: block; margin-bottom: 8px; font-size: 12px; font-weight: 700; }
.human-check small { display: block; margin-top: 6px; color: var(--ink-soft); font-size: 10px; }
#turnstile-widget { min-height: 0; }

.actions { display: grid; grid-template-columns: 1fr 1.08fr; gap: 11px; margin-top: 23px; }
.button { min-height: 55px; border-radius: 14px; border: 1px solid var(--ink); font-size: 13px; font-weight: 700; cursor: pointer; transition: transform .2s, box-shadow .2s, opacity .2s; }
.button:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 9px 22px rgba(24,35,30,.13); }
.button:disabled { opacity: .42; cursor: not-allowed; }
.button-secondary { background: transparent; }
.button-primary { display: flex; align-items: center; justify-content: space-between; padding-inline: 19px; color: #fff; background: var(--green-deep); border-color: var(--green-deep); }
.apple-glyph { display: inline-block; margin-right: 6px; font-size: 10px; }

.result { display: flex; align-items: flex-start; gap: 11px; margin-top: 18px; padding: 15px 16px; border-radius: 13px; background: rgba(39,91,67,.07); color: var(--ink-soft); font-size: 12px; }
.result[data-kind="success"] { background: rgba(73,165,110,.12); color: #28563a; }
.result[data-kind="error"] { background: rgba(239,118,94,.12); color: #8c3f30; }
.result[data-kind="working"] .result-icon { animation: pulse .7s infinite alternate; }
.result-icon { flex: 0 0 20px; display: grid; place-items: center; width: 20px; height: 20px; border: 1px solid currentColor; border-radius: 50%; font-weight: 700; line-height: 1; }
.result-body { min-width: 0; }
.result p { margin: 0; }
.result a { display: inline-block; margin-top: 7px; color: var(--green-deep); font-weight: 700; text-underline-offset: 3px; }
.result a[hidden] { display: none; }
.privacy-note { margin: 15px 2px 0; color: #777c78; font-size: 10px; }

.principles { padding-block: 105px 120px; border-top: 1px solid var(--line); }
.principles > div:first-child { display: flex; justify-content: space-between; gap: 40px; }
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.principle-grid article { padding: 29px; border-top: 1px solid var(--ink); background: rgba(255,255,255,.22); }
.principle-grid article > span { display: block; margin-bottom: 40px; color: var(--coral); font-family: "Hiragino Mincho ProN", "Yu Mincho", serif; font-size: 42px; }
.principle-grid h3 { margin: 0 0 8px; font-size: 16px; }
.principle-grid p { margin: 0; color: var(--ink-soft); font-size: 13px; }

.site-footer { min-height: 150px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 11px; }
.footer-brand { color: var(--ink); }
.site-footer p { margin: 0; text-align: center; letter-spacing: .08em; }
.site-footer nav { justify-self: end; display: flex; gap: 22px; }

.legal { max-width: 760px; padding-block: 75px 110px; }
.legal h1 { font-size: clamp(38px, 6vw, 62px); }
.legal h2 { margin-top: 48px; margin-bottom: 14px; font-family: inherit; font-size: 20px; letter-spacing: 0; }
.legal p, .legal li { color: var(--ink-soft); }
.legal .updated { margin: 8px 0 45px; font-size: 12px; }
.legal-back { display: inline-block; margin-top: 50px; color: var(--green); font-weight: 700; }

body.is-busy .creator-card { cursor: progress; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { max-width: 720px; }
  .record-art { width: min(76vw, 430px); justify-self: center; }
  .experience { grid-template-columns: 1fr; gap: 52px; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 30px, 1180px); }
  .site-header { height: 76px; }
  .header-note { display: none; }
  .hero { padding-block: 55px 72px; gap: 40px; }
  .lead { font-size: 15px; }
  .record-art { width: min(90vw, 390px); }
  .orbit-two { inset: 0; transform: none; }
  .experience, .principles { padding-block: 75px; }
  .creator-card { padding: 22px 17px; border-radius: 22px; }
  .card-topline { align-items: flex-start; }
  #service-status { max-width: 210px; }
  .actions { grid-template-columns: 1fr; }
  .principle-grid { grid-template-columns: 1fr; }
  .principle-grid article > span { margin-bottom: 16px; }
  .site-footer { grid-template-columns: 1fr; gap: 14px; padding-block: 34px; text-align: center; }
  .site-footer nav { justify-self: center; }
  .footer-brand { justify-self: center; }
}

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