@font-face {
  font-family: "Pretendard";
  src: url("../fonts/Pretendard-Regular.otf") format("opentype");
  font-weight: 400;
}

@font-face {
  font-family: "Pretendard";
  src: url("../fonts/Pretendard-Medium.otf") format("opentype");
  font-weight: 500;
}

@font-face {
  font-family: "Pretendard";
  src: url("../fonts/Pretendard-SemiBold.otf") format("opentype");
  font-weight: 600;
}

@font-face {
  font-family: "Pretendard";
  src: url("../fonts/Pretendard-Bold.otf") format("opentype");
  font-weight: 700;
}

:root {
  --ink: #f7f0df;
  --muted: rgba(247, 240, 223, 0.68);
  --quiet: rgba(247, 240, 223, 0.44);
  --black: #070706;
  --stage: #11110f;
  --panel: rgba(247, 240, 223, 0.065);
  --line: rgba(247, 240, 223, 0.16);
  --teal: #6fe0d0;
  --amber: #d9a35f;
  --pink: #ef6f89;
  --acid: #cde66f;
  --shadow: rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Pretendard", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(circle at 50% 0, rgba(111, 224, 208, 0.2), transparent 30rem),
    linear-gradient(135deg, rgba(239, 111, 137, 0.12), transparent 28rem),
    #0d0e0c;
  word-break: keep-all;
}

html[lang="ja"] body {
  line-break: strict;
  overflow-wrap: anywhere;
  word-break: normal;
}

html[lang="ja"] .screen-heading h1,
html[lang="ja"] .screen-heading h2,
html[lang="ja"] .detail-grid h2,
html[lang="ja"] .bookmark-matrix h2,
html[lang="ja"] .settings-list span,
html[lang="ja"] .drawer-nav a {
  overflow-wrap: anywhere;
  word-break: normal;
}

body.screen-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 76% 18%, rgba(111, 224, 208, 0.18), transparent 28rem),
    radial-gradient(circle at 12% 72%, rgba(217, 163, 95, 0.12), transparent 26rem),
    #0d0e0c;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(247, 240, 223, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 240, 223, 0.028) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, #000, transparent 86%);
}

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

button {
  color: inherit;
  font: inherit;
}

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

.site-head {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(16px, 4vw, 48px);
  background: linear-gradient(180deg, rgba(7, 7, 6, 0.92), rgba(7, 7, 6, 0.18));
  backdrop-filter: blur(14px);
}

.brand-mark {
  width: clamp(134px, 14vw, 210px);
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
}

.site-head nav {
  display: flex;
  gap: 6px;
  color: rgba(247, 240, 223, 0.76);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-head nav a {
  padding: 8px 10px;
  border-bottom: 1px solid transparent;
}

.site-head nav a:hover,
.site-head nav a[aria-current="page"] {
  color: var(--teal);
  border-color: var(--teal);
}

.desktop-language-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(247, 240, 223, 0.18);
  border-radius: 999px;
  background: rgba(7, 7, 6, 0.42);
  backdrop-filter: blur(10px);
}

.desktop-language-switch a {
  min-width: 34px;
  min-height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: rgba(247, 240, 223, 0.72);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.desktop-language-switch a:hover,
.desktop-language-switch a[aria-current="true"] {
  color: var(--black);
  background: var(--teal);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  gap: 4px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 7, 6, 0.58);
}

.menu-toggle span {
  width: 17px;
  height: 2px;
  display: block;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  background: var(--teal);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  background: rgba(7, 7, 6, 0);
  transition: background 220ms ease;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  width: min(86vw, 360px);
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-left: 1px solid rgba(247, 240, 223, 0.18);
  background:
    radial-gradient(circle at 72% 12%, rgba(111, 224, 208, 0.16), transparent 14rem),
    linear-gradient(180deg, rgba(17, 17, 15, 0.98), rgba(7, 7, 6, 0.98));
  box-shadow: -26px 0 80px rgba(0, 0, 0, 0.58);
  transform: translateX(104%);
  transition: transform 240ms ease;
}

body.drawer-open {
  overflow: hidden;
}

body.drawer-open .drawer-backdrop {
  pointer-events: auto;
  background: rgba(7, 7, 6, 0.56);
}

body.drawer-open .mobile-drawer {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.drawer-head img {
  width: 152px;
}

.drawer-head button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(247, 240, 223, 0.06);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.language-switch {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-top: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.language-switch a {
  min-height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(247, 240, 223, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.language-switch a:hover,
.language-switch a[aria-current="true"] {
  color: var(--black);
  background: var(--teal);
  border-color: var(--teal);
}

.drawer-nav {
  display: grid;
  gap: 0;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.drawer-nav a {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: rgba(247, 240, 223, 0.84);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.drawer-nav a::after {
  content: "↗";
  color: var(--quiet);
  font-size: 0.86rem;
}

.drawer-nav a[aria-current="page"] {
  color: var(--black);
  padding: 0 14px;
  background: var(--teal);
}

.drawer-nav a[aria-current="page"]::after {
  color: rgba(7, 7, 6, 0.6);
}

.instrument-hero {
  position: relative;
  min-height: 100vh;
  padding: 96px clamp(16px, 4vw, 48px) 0;
  overflow: hidden;
}

.room-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.room-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.2) contrast(1.08);
}

.room-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 54% 46%, rgba(7, 7, 6, 0.5), rgba(7, 7, 6, 0.92) 52%),
    linear-gradient(90deg, rgba(7, 7, 6, 0.94), rgba(7, 7, 6, 0.58), rgba(7, 7, 6, 0.94));
}

.session-label {
  position: absolute;
  left: clamp(16px, 4vw, 48px);
  right: clamp(16px, 4vw, 48px);
  bottom: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-bottom: 0;
  background: rgba(7, 7, 6, 0.72);
  backdrop-filter: blur(14px);
}

.session-label span,
.transport-bar span {
  min-height: 52px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  color: rgba(247, 240, 223, 0.78);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.session-label span:last-child,
.transport-bar span:last-child {
  border-right: 0;
}

.orbit-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 0.74fr) minmax(430px, 1fr) minmax(230px, 0.54fr);
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  width: min(1380px, 100%);
  min-height: calc(100vh - 148px);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.orbit-copy h1,
.routine-title h2,
.archive-section h2,
.support-section h2,
.notes-section h2,
.policy-content h1 {
  margin: 0;
  letter-spacing: 0;
}

.orbit-copy h1 {
  max-width: 560px;
  font-size: clamp(3.25rem, 5.4vw, 6.6rem);
  line-height: 0.9;
}

.orbit-copy p:not(.eyebrow),
.monitor-readout p,
.take-step p,
.archive-section p,
.support-section p,
.notes-section dd,
.policy-content p,
.policy-content li {
  color: var(--muted);
  line-height: 1.72;
}

.orbit-copy p:not(.eyebrow) {
  max-width: 34rem;
  margin: 24px 0 0;
}

.orbital-console {
  position: relative;
  width: min(100%, 620px);
  aspect-ratio: 1;
  margin: 0 auto;
  border: 1px solid rgba(247, 240, 223, 0.1);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(7, 7, 6, 0.12) 0 35%, rgba(111, 224, 208, 0.08) 36% 36.5%, transparent 37%),
    repeating-radial-gradient(circle, transparent 0 78px, rgba(247, 240, 223, 0.08) 79px 80px);
}

.tempo-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 142px;
  height: 142px;
  border: 1px solid rgba(217, 163, 95, 0.78);
  border-radius: 50%;
  background: rgba(7, 7, 6, 0.82);
  transform: translate(-162%, -162%);
  box-shadow: 0 0 42px rgba(217, 163, 95, 0.28);
}

.tempo-ring span {
  color: var(--amber);
  font-size: 3rem;
  font-weight: 900;
  line-height: 0.8;
}

.tempo-ring small {
  color: var(--quiet);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.phone-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: min(52%, 300px);
  aspect-ratio: 1170 / 2532;
  border: 1px solid rgba(247, 240, 223, 0.18);
  border-radius: 34px;
  overflow: hidden;
  background: #080806;
  box-shadow: 0 30px 92px var(--shadow);
  transform: translate(-50%, -50%) rotate(-2deg);
}

.phone-core img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 160ms ease, transform 160ms ease;
}

.phone-core img.is-switching {
  opacity: 0.4;
  transform: scale(0.985);
}

.orbit-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  display: grid;
  gap: 3px;
  min-width: 124px;
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid rgba(247, 240, 223, 0.18);
  border-radius: 999px;
  background: rgba(7, 7, 6, 0.74);
  color: rgba(247, 240, 223, 0.82);
  cursor: pointer;
  transform:
    translate(-50%, -50%)
    rotate(var(--angle))
    translateX(min(42vw, 302px))
    rotate(calc(var(--angle) * -1));
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.orbit-button span {
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.orbit-button:hover,
.orbit-button.is-active {
  color: var(--black);
  border-color: var(--teal);
  background: var(--teal);
}

.orbit-button:hover span,
.orbit-button.is-active span {
  color: rgba(7, 7, 6, 0.72);
}

.monitor-readout {
  align-self: end;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.monitor-readout h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3.3vw, 3.8rem);
  line-height: 0.94;
}

.monitor-readout a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal);
  font-weight: 900;
  border-bottom: 1px solid rgba(111, 224, 208, 0.55);
}

.transport-bar {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1380px, 100%);
  margin: 0 auto 52px;
  border: 1px solid var(--line);
  background: rgba(7, 7, 6, 0.7);
  backdrop-filter: blur(14px);
}

.routine-section,
.archive-section,
.notes-section {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.routine-section {
  padding: 112px 0 84px;
}

.routine-title {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 92px);
  margin-bottom: 56px;
}

.routine-title h2,
.archive-section h2,
.support-section h2,
.notes-section h2,
.policy-content h1 {
  font-size: clamp(2.6rem, 5.5vw, 6.2rem);
  line-height: 0.92;
}

.take-lane {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}

.take-step {
  min-height: 310px;
  padding: 22px;
  border-left: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(247, 240, 223, 0.08), rgba(7, 7, 6, 0.08));
}

.take-step:nth-child(even) {
  margin-top: 72px;
}

.take-step span {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.take-step h3 {
  margin: 64px 0 14px;
  font-size: clamp(1.9rem, 3.4vw, 3.6rem);
  line-height: 0.92;
}

.archive-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: clamp(32px, 7vw, 100px);
  align-items: center;
  padding: 118px 0 130px;
  border-top: 1px solid var(--line);
}

.archive-wall {
  position: relative;
  min-height: 720px;
}

.archive-wall figure {
  position: absolute;
  margin: 0;
}

.archive-wall img {
  width: 235px;
  aspect-ratio: 1170 / 2532;
  object-fit: cover;
  border: 1px solid rgba(247, 240, 223, 0.18);
  border-radius: 28px;
  background: #080806;
  box-shadow: 0 28px 80px var(--shadow);
}

.archive-wall figcaption {
  margin-top: 10px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.archive-wall figure:nth-child(1) {
  left: 8%;
  top: 0;
  z-index: 3;
  transform: rotate(-4deg);
}

.archive-wall figure:nth-child(1) img {
  width: 285px;
}

.archive-wall figure:nth-child(2) {
  right: 8%;
  top: 80px;
  z-index: 4;
  transform: rotate(7deg);
}

.archive-wall figure:nth-child(2) img {
  width: 265px;
}

.archive-wall figure:nth-child(3) {
  left: 0;
  bottom: 12px;
  z-index: 2;
  transform: rotate(6deg);
}

.archive-wall figure:nth-child(4) {
  right: 20%;
  bottom: 0;
  z-index: 1;
  transform: rotate(-8deg);
}

.archive-wall figure:nth-child(4) img {
  width: 215px;
}

.feature-menu,
.screen-detail {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  scroll-margin-top: 96px;
}

.feature-menu {
  padding: 112px 0 88px;
  border-top: 1px solid var(--line);
}

.feature-menu h2,
.screen-heading h1,
.screen-heading h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.8rem, 6.2vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.feature-menu nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 46px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-menu a {
  min-height: 112px;
  display: flex;
  align-items: flex-end;
  padding: 18px 14px;
  border-right: 1px solid var(--line);
  color: rgba(247, 240, 223, 0.82);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease;
}

.feature-menu a:hover {
  color: var(--black);
  background: var(--teal);
}

.screen-detail {
  padding: 118px 0;
  border-top: 1px solid var(--line);
}

body.screen-page .screen-detail {
  min-height: calc(100vh - 126px);
  padding-top: 142px;
  border-top: 0;
}

.page-kicker {
  width: min(1280px, calc(100% - 32px));
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto -72px;
  padding-top: 104px;
  color: var(--quiet);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.screen-nav {
  width: min(1280px, calc(100% - 32px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto 44px;
  border: 1px solid var(--line);
  background: rgba(7, 7, 6, 0.42);
}

.screen-nav a {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-right: 1px solid var(--line);
  color: rgba(247, 240, 223, 0.78);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.screen-nav a:last-child {
  border-right: 0;
}

.screen-nav a:hover,
.screen-nav a[aria-current="page"] {
  color: var(--black);
  background: var(--teal);
}

.screen-heading {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) minmax(280px, 0.54fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: end;
  margin-bottom: 58px;
}

.screen-heading .eyebrow {
  margin-bottom: 0.2em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.screen-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.74;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.detail-layout.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
}

.detail-layout.reverse .detail-phone {
  order: 2;
}

.detail-phone {
  position: sticky;
  top: 104px;
  margin: 0;
}

.detail-phone img {
  width: min(100%, 330px);
  aspect-ratio: 1170 / 2532;
  object-fit: cover;
  border: 1px solid rgba(247, 240, 223, 0.18);
  border-radius: 32px;
  background: #080806;
  box-shadow: 0 26px 78px var(--shadow);
}

.detail-phone figcaption,
.wide-shot figcaption {
  margin-top: 12px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.detail-grid article,
.bookmark-matrix article {
  min-height: 226px;
  padding: 20px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(247, 240, 223, 0.07), rgba(247, 240, 223, 0.025)),
    rgba(7, 7, 6, 0.38);
}

.detail-grid article.wide {
  grid-column: 1 / -1;
  min-height: 180px;
}

.detail-grid span {
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-grid h2,
.detail-grid h3,
.bookmark-matrix h2,
.bookmark-matrix h3 {
  margin: 26px 0 12px;
  font-size: clamp(1.35rem, 2.3vw, 2.3rem);
  line-height: 1;
}

.detail-grid p,
.bookmark-matrix p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.saved-state {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: rgba(7, 7, 6, 0.42);
}

.saved-state strong,
.saved-state span {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-right: 1px solid var(--line);
}

.saved-state strong {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.saved-state span {
  color: rgba(247, 240, 223, 0.76);
  font-size: 0.82rem;
  font-weight: 800;
}

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

.wide-shot {
  margin: 34px 0 0;
}

.wide-shot img {
  width: min(100%, 360px);
  aspect-ratio: 1170 / 2532;
  object-fit: cover;
  border: 1px solid rgba(247, 240, 223, 0.18);
  border-radius: 32px;
  background: #080806;
  box-shadow: 0 26px 78px var(--shadow);
}

.settings-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.settings-list div {
  min-height: 138px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 240, 223, 0.045);
}

.settings-list strong {
  display: block;
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.settings-list span {
  display: block;
  margin-top: 22px;
  color: var(--muted);
  line-height: 1.58;
}

.support-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(260px, 0.68fr);
  gap: clamp(24px, 7vw, 100px);
  padding: 88px clamp(16px, 4vw, 48px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(111, 224, 208, 0.12), rgba(217, 163, 95, 0.12)),
    rgba(247, 240, 223, 0.045);
}

.notes-section {
  padding: 106px 0;
}

.notes-section dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 42px 0 0;
}

.notes-section div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.notes-section dt {
  font-size: 1.15rem;
  font-weight: 900;
}

.notes-section dd {
  margin: 12px 0 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-footer img {
  width: 96px;
  opacity: 0.86;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  gap: 18px;
  color: rgba(247, 240, 223, 0.82);
  font-weight: 900;
}

.policy-page {
  min-height: 100vh;
}

.policy-shell {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 80px;
}

.policy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.policy-logo {
  width: 176px;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.32));
}

.back-link,
.legal-links a {
  width: fit-content;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(111, 224, 208, 0.5);
  color: rgba(247, 240, 223, 0.92);
  font-weight: 900;
}

.policy-content {
  padding-top: 24px;
}

.policy-content section {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.policy-content h2 {
  margin: 0 0 14px;
  font-size: 1.8rem;
}

.policy-date {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-content ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

@media (max-width: 1120px) {
  .orbit-stage {
    grid-template-columns: 1fr;
    padding-bottom: 48px;
  }

  .orbit-copy {
    max-width: 760px;
  }

  .orbital-console {
    width: min(100%, 560px);
  }

  .monitor-readout {
    max-width: 720px;
  }

  .routine-title,
  .archive-section,
  .screen-heading,
  .detail-layout,
  .detail-layout.reverse,
  .support-section {
    grid-template-columns: 1fr;
  }

  .screen-heading .eyebrow {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .detail-layout.reverse .detail-phone {
    order: 0;
  }

  .page-kicker {
    margin-bottom: -54px;
  }

  .detail-phone {
    position: relative;
    top: auto;
    justify-self: center;
    width: min(100%, 360px);
  }

  .feature-menu nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bookmark-matrix,
  .settings-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .take-lane,
  .notes-section dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-head {
    padding: 14px;
  }

  .site-head nav {
    display: none;
  }

  .desktop-language-switch {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .brand-mark {
    width: 150px;
  }

  .instrument-hero {
    padding: 92px 14px 0;
  }

  .orbit-stage {
    min-height: auto;
    gap: 26px;
  }

  .orbit-copy h1 {
    font-size: clamp(3rem, 13vw, 4.4rem);
  }

  .orbital-console {
    width: min(100%, 430px);
    margin-top: 8px;
  }

  .phone-core {
    width: 46%;
    border-radius: 24px;
  }

  .tempo-ring {
    width: 88px;
    height: 88px;
    transform: translate(-155%, -154%);
  }

  .tempo-ring span {
    font-size: 1.8rem;
  }

  .orbit-button {
    min-width: 88px;
    min-height: 48px;
    padding: 8px 9px;
    font-size: 0.72rem;
    transform:
      translate(-50%, -50%)
      rotate(var(--angle))
      translateX(min(37vw, 168px))
      rotate(calc(var(--angle) * -1));
  }

  .transport-bar,
  .session-label {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .routine-section,
  .archive-section,
  .feature-menu,
  .screen-detail,
  .page-kicker,
  .screen-nav,
  .notes-section {
    width: min(100% - 28px, 1280px);
  }

  body.screen-page .screen-detail {
    padding-top: 104px;
  }

  .page-kicker {
    flex-direction: column;
    gap: 8px;
    margin-bottom: -42px;
    padding-top: 92px;
  }

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

  .screen-nav a {
    min-height: 54px;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .screen-nav a:last-child {
    border-bottom: 0;
  }

  .routine-section,
  .archive-section,
  .feature-menu,
  .screen-detail,
  .notes-section {
    padding: 76px 0;
  }

  .routine-title h2,
  .archive-section h2,
  .feature-menu h2,
  .screen-heading h1,
  .screen-heading h2,
  .support-section h2,
  .notes-section h2,
  .policy-content h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .feature-menu nav,
  .detail-grid,
  .bookmark-matrix,
  .settings-list {
    grid-template-columns: 1fr;
  }

  .feature-menu nav {
    margin-top: 34px;
  }

  .feature-menu a {
    min-height: 64px;
  }

  .screen-heading {
    gap: 18px;
    margin-bottom: 34px;
  }

  .screen-heading p:not(.eyebrow) {
    font-size: 0.95rem;
  }

  .detail-grid article,
  .bookmark-matrix article {
    min-height: auto;
    padding: 18px;
  }

  .detail-grid h2,
  .detail-grid h3,
  .bookmark-matrix h2,
  .bookmark-matrix h3 {
    margin-top: 18px;
  }

  .detail-phone img,
  .wide-shot img {
    width: min(100%, 300px);
    margin-inline: auto;
    border-radius: 26px;
  }

  .detail-phone,
  .wide-shot {
    text-align: center;
  }

  .saved-state strong,
  .saved-state span {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .take-lane,
  .notes-section dl {
    grid-template-columns: 1fr;
  }

  .take-step,
  .take-step:nth-child(even) {
    min-height: auto;
    margin-top: 0;
  }

  .take-step h3 {
    margin-top: 28px;
  }

  .archive-wall {
    min-height: 520px;
  }

  .archive-wall img {
    width: 146px;
    border-radius: 20px;
  }

  .archive-wall figure:nth-child(1) img {
    width: 188px;
  }

  .archive-wall figure:nth-child(2) img {
    width: 172px;
  }

  .archive-wall figure:nth-child(4) img {
    width: 146px;
  }

  .support-section {
    padding: 64px 14px;
  }

  .site-footer,
  .site-footer div,
  .site-footer nav,
  .policy-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .policy-shell {
    width: min(100% - 28px, 880px);
    padding-top: 28px;
  }
}
