/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
@layer theme, base, components, utilities;
@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --spacing: 0.25rem;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}
@layer base {
  *,
  ::after,
  ::before,
  ::backdrop,
  ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html,
  :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b,
  strong {
    font-weight: bolder;
  }
  code,
  kbd,
  samp,
  pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol,
  ul,
  menu {
    list-style: none;
  }
  img,
  svg,
  video,
  canvas,
  audio,
  iframe,
  embed,
  object {
    display: block;
    vertical-align: middle;
  }
  img,
  video {
    max-width: 100%;
    height: auto;
  }
  button,
  input,
  select,
  optgroup,
  textarea,
  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button))  or
    (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit,
  ::-webkit-datetime-edit-year-field,
  ::-webkit-datetime-edit-month-field,
  ::-webkit-datetime-edit-day-field,
  ::-webkit-datetime-edit-hour-field,
  ::-webkit-datetime-edit-minute-field,
  ::-webkit-datetime-edit-second-field,
  ::-webkit-datetime-edit-millisecond-field,
  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button,
  input:where([type="button"], [type="reset"], [type="submit"]),
  ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button,
  ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}
@layer utilities {
  .relative {
    position: relative;
  }
  .start {
    inset-inline-start: var(--spacing);
  }
  .table {
    display: table;
  }
}
:root {
  --ink: #071625;
  --navy: #03101d;
  --cream: #f5f1e8;
  --gold: #e8a44e;
  --teal: #67c8bd;
  --line: rgba(245,241,232,.18);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--navy);
  color: var(--cream);
  font-family: Arial,Helvetica,sans-serif;
}
a {
  color: inherit;
}
button,input,textarea,select {
  font: inherit;
}
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  height: 86px;
  padding: 0 clamp(24px,5vw,76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  gap: 13px;
  align-items: center;
  text-decoration: none;
  font-family: Georgia,serif;
  letter-spacing: .28em;
  font-size: 18px;
}
.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0;
}
.header-cta {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .18em;
  display: flex;
  gap: 12px;
}
.hero {
  min-height: 780px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  overflow: hidden;
  background: radial-gradient(circle at 85% 50%,rgba(232,164,78,.08),transparent 35%),linear-gradient(130deg,#061827,var(--navy));
}
.hero-copy {
  padding: clamp(150px,18vh,210px) clamp(24px,7vw,110px) 90px;
  align-self: center;
}
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: .2em;
  font-weight: 700;
}
h1,h2 {
  font-family: Georgia,"Times New Roman",serif;
  font-weight: 400;
  margin: 0;
  letter-spacing: -.035em;
}
h1 {
  max-width: 760px;
  font-size: clamp(52px,6.2vw,94px);
  line-height: .98;
}
h1 em {
  color: var(--gold);
  font-weight: 400;
}
.hero-lead {
  max-width: 630px;
  margin: 34px 0;
  color: #c5ced5;
  font-size: clamp(17px,1.5vw,21px);
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.button {
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
  text-decoration: none;
  cursor: pointer;
}
.primary {
  background: var(--gold);
  color: var(--ink);
}
.primary:hover {
  background: #f0b464;
}
.text-link {
  font-size: 13px;
  text-underline-offset: 5px;
}
.hero-note {
  margin-top: 64px;
  padding-top: 18px;
  max-width: 560px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #96a7b4;
  font-size: 12px;
  letter-spacing: .08em;
}
.hero-note strong {
  color: var(--cream);
}
.hero-art {
  position: relative;
  min-height: 650px;
  border-left: 1px solid var(--line);
  overflow: hidden;
}
.sun {
  position: absolute;
  width: 380px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #bd3034;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  box-shadow: 0 0 120px rgba(189,48,52,.22);
}
.orbit {
  position: absolute;
  border: 1px solid rgba(232,164,78,.42);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) rotate(-18deg);
}
.orbit-one {
  width: 660px;
  height: 240px;
}
.orbit-two {
  width: 480px;
  height: 700px;
}
.coordinate {
  position: absolute;
  top: 24%;
  right: 9%;
  font-size: 10px;
  line-height: 1.7;
  letter-spacing: .18em;
  color: #9aa6ae;
}
.japan-type {
  position: absolute;
  right: 8%;
  bottom: 8%;
  font-family: Georgia,serif;
  font-size: 124px;
  writing-mode: vertical-rl;
  color: rgba(245,241,232,.10);
}
.section {
  padding: 110px clamp(24px,7vw,110px);
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 62px;
}
h2 {
  font-size: clamp(42px,5vw,72px);
  line-height: 1.05;
}
.offer {
  background: var(--cream);
  color: var(--ink);
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid #cfc9bc;
  border-bottom: 1px solid #cfc9bc;
}
.offer-grid article {
  padding: 38px 34px 42px 0;
}
.offer-grid article+article {
  border-left: 1px solid #cfc9bc;
  padding-left: 34px;
}
.step {
  font-family: Georgia,serif;
  color: var(--gold);
  font-size: 14px;
}
h3 {
  margin: 34px 0 14px;
  font-family: Georgia,serif;
  font-size: 27px;
  font-weight: 400;
}
.offer-grid p,.section-intro {
  color: #58616a;
  line-height: 1.65;
}
.commercial-line {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin-top: 48px;
  gap: 24px;
}
.commercial-line div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.commercial-line small {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 10px;
  color: #77756f;
}
.commercial-line strong {
  font-family: Georgia,serif;
  font-size: 24px;
  font-weight: 400;
}
.boundaries {
  background: #0b1d2b;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 8vw;
}
.section-intro {
  color: #aab6be;
  max-width: 460px;
  margin-top: 26px;
}
.boundary-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.checklist h3 {
  color: var(--gold);
  margin: 0 0 22px;
}
.checklist p {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  padding: 13px 0;
  margin: 0;
  border-bottom: 1px solid var(--line);
  color: #c6d0d6;
  font-size: 14px;
  line-height: 1.5;
}
.checklist span {
  color: var(--teal);
}
.neutral span {
  color: var(--gold);
}
.apply-section {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 8vw;
  padding: 110px clamp(24px,7vw,110px);
  background: #e9e2d4;
  color: var(--ink);
}
.apply-copy {
  position: sticky;
  top: 60px;
  align-self: start;
}
.apply-copy>p:not(.eyebrow) {
  color: #5f666b;
  line-height: 1.7;
  max-width: 460px;
}
.capacity {
  margin-top: 70px;
  padding-top: 20px;
  border-top: 1px solid #bcb4a6;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .12em;
  line-height: 1.6;
}
.capacity span {
  font-family: Georgia,serif;
  font-size: 56px;
  color: #bd3034;
  display: block;
  letter-spacing: 0;
}
.application-form {
  background: #f9f6ef;
  padding: clamp(24px,4vw,54px);
  box-shadow: 0 24px 70px rgba(7,22,37,.11);
}
.application-form label:not(.consent) {
  display: flex;
  flex-direction: column;
  gap: 9px;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: 10px;
  font-weight: 700;
}
.field-grid {
  display: grid;
  gap: 22px;
}
.field-grid.two {
  grid-template-columns: 1fr 1fr;
}
input,textarea,select {
  width: 100%;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid #aaa293;
  border-radius: 0;
  padding: 13px 2px;
  outline: none;
  text-transform: none;
  letter-spacing: normal;
}
textarea {
  border: 1px solid #aaa293;
  padding: 14px;
  resize: vertical;
}
input:focus,textarea:focus,select:focus {
  border-color: #bd3034;
  box-shadow: 0 1px 0 #bd3034;
}
.application-form>label,.application-form>.field-grid,.application-form fieldset {
  margin-bottom: 28px;
}
fieldset {
  border: 0;
  padding: 0;
}
legend {
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 14px;
}
.radio-row {
  display: flex;
  gap: 24px;
}
.radio-row label {
  display: flex;
  flex-direction: row !important;
  align-items: center;
  text-transform: none !important;
  letter-spacing: normal !important;
  font-size: 14px !important;
  font-weight: 400 !important;
}
.radio-row input,.consent input {
  width: 17px;
  height: 17px;
  accent-color: #bd3034;
}
fieldset small {
  display: block;
  margin-top: 12px;
  color: #777;
}
.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 12px;
  line-height: 1.5;
  color: #5d6266;
}
.consent em {
  color: #bd3034;
}
.submit {
  width: 100%;
}
.privacy,.form-status {
  text-align: center;
  color: #777;
  font-size: 11px;
  line-height: 1.5;
}
.form-status {
  color: #207167;
}
footer {
  min-height: 180px;
  padding: 0 clamp(24px,7vw,110px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #9eabb4;
  font-size: 12px;
}
footer a {
  text-underline-offset: 5px;
}
@media (max-width:900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding-top: 150px;
  }
  .hero-art {
    min-height: 420px;
    border: 0;
    border-top: 1px solid var(--line);
  }
  .sun {
    width: 260px;
  }
  .orbit-one {
    width: 500px;
  }
  .orbit-two {
    height: 480px;
    width: 320px;
  }
  .japan-type {
    font-size: 80px;
  }
  .boundaries,.apply-section {
    grid-template-columns: 1fr;
  }
  .apply-copy {
    position: static;
  }
  .capacity {
    margin-top: 35px;
  }
}
@media (max-width:640px) {
  .site-header {
    height: 72px;
  }
  .header-cta {
    font-size: 10px;
  }
  h1 {
    font-size: 50px;
  }
  .hero-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .section,.apply-section {
    padding-top: 78px;
    padding-bottom: 78px;
  }
  .section-heading {
    margin-bottom: 40px;
  }
  .offer-grid,.commercial-line,.boundary-columns,.field-grid.two {
    grid-template-columns: 1fr;
  }
  .offer-grid article+article {
    border-left: 0;
    border-top: 1px solid #cfc9bc;
    padding-left: 0;
  }
  .commercial-line {
    gap: 28px;
  }
  .application-form {
    padding: 25px 20px;
  }
  footer {
    padding-top: 45px;
    padding-bottom: 45px;
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
}
