:root {
  color-scheme: light;
  --canvas: #f6f3ea;
  --paper: #fcfaf2;
  --paper-deep: #eee9dc;
  --ink: #131d24;
  --ink-soft: #5d686b;
  --saffron: #ec9528;
  --saffron-soft: #f7dfb0;
  --sage: #5a7969;
  --sage-soft: #d9e5dc;
  --danger: #bb3e32;
  --line: rgba(19, 29, 36, 0.13);
  --line-light: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(19, 29, 36, 0.14);
  --display: "Iowan Old Style", "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", Georgia, serif;
  --body: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shell: min(1180px, calc(100% - 48px));
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--saffron-soft);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea {
  font: inherit;
}

img,
svg {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--saffron);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 5;
  padding: 24px 0;
}

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

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.wordmark-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  background: var(--ink);
  color: var(--saffron);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.1em;
  line-height: 1;
}

.header-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 23px;
}

.header-nav {
  margin-left: auto;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}

.header-nav a,
.header-actions a {
  transition: color 160ms ease, opacity 160ms ease;
}

.header-nav a:hover,
.header-actions a:hover {
  color: var(--saffron);
}

.header-actions {
  margin-left: 8px;
}

.language-switch {
  display: inline-flex;
  min-width: 36px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.header-support {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 15px;
  border-radius: 999px;
  background: var(--paper);
  box-shadow: 0 4px 15px rgba(19, 29, 36, 0.06);
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  align-items: center;
  gap: 56px;
  min-height: 680px;
  padding: 64px 0 130px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker,
.phone-kicker,
.memo-label,
.chip-label {
  margin: 0;
  color: var(--saffron);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--sage);
}

.eyebrow::after {
  width: 30px;
  height: 1px;
  background: var(--sage);
  content: "";
}

.hero h1,
.subpage-hero h1 {
  max-width: 9.5ch;
  margin: 23px 0 24px;
  font-family: var(--display);
  font-size: clamp(3.55rem, 6.2vw, 6.3rem);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.96;
}

.hero h1 em,
.subpage-hero h1 em {
  color: var(--saffron);
  font-style: normal;
}

.hero-lede,
.subpage-lede {
  max-width: 37em;
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.9;
}

.hero-actions,
.support-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover:not([aria-disabled="true"]) {
  transform: translateY(-2px);
}

.button--dark {
  background: var(--ink);
  box-shadow: 0 10px 22px rgba(19, 29, 36, 0.16);
  color: var(--paper);
}

.button--dark:hover:not([aria-disabled="true"]) {
  box-shadow: 0 14px 28px rgba(19, 29, 36, 0.21);
}

.button--saffron {
  background: var(--saffron);
  color: var(--ink);
}

.button--light {
  border-color: rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--paper);
}

.button--light:hover:not([aria-disabled="true"]) {
  background: rgba(255, 255, 255, 0.09);
}

.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.78;
}

.button-arrow {
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  color: var(--saffron);
  font-size: 19px;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.availability-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.availability-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--saffron);
  box-shadow: 0 0 0 5px var(--saffron-soft);
}

.hero-visual {
  position: relative;
  min-height: 590px;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  top: 12%;
  right: -5%;
  width: 82%;
  height: 75%;
  border-radius: 52% 48% 48% 52%;
  background: var(--saffron-soft);
  content: "";
  transform: rotate(-8deg);
}

.hero-visual::after {
  position: absolute;
  z-index: -1;
  right: 3%;
  bottom: 6%;
  width: 72%;
  height: 35%;
  border-radius: 50%;
  background: rgba(90, 121, 105, 0.12);
  content: "";
  filter: blur(10px);
}

.phone-wrap {
  position: absolute;
  top: 1%;
  right: 17%;
  animation: phone-settle 8s ease-in-out infinite;
  transform: rotate(4deg);
}

.phone {
  position: relative;
  width: 318px;
  height: 610px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 45px;
  background: #202b31;
  box-shadow: 25px 30px 55px rgba(19, 29, 36, 0.28), inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.phone::before {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 50%;
  width: 94px;
  height: 24px;
  border-radius: 999px;
  background: #111a1f;
  content: "";
  transform: translateX(-50%);
}

.phone-screen {
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  padding: 48px 17px 14px;
  border-radius: 36px;
  background: var(--canvas);
}

.phone-status,
.phone-title-row,
.phone-card-meta,
.phone-list-row,
.phone-dock,
.phone-dock-time {
  display: flex;
  align-items: center;
}

.phone-status {
  justify-content: space-between;
  padding: 0 6px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
}

.phone-title-row {
  justify-content: space-between;
  margin: 22px 5px 13px;
}

.phone-title {
  margin: 0;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 1;
}

.phone-count {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
}

.phone-memo {
  display: flex;
  min-height: 275px;
  flex-direction: column;
  padding: 17px;
  border-radius: 21px;
  background: var(--ink);
  box-shadow: 0 14px 25px rgba(19, 29, 36, 0.16);
}

.phone-kicker {
  color: var(--saffron);
  font-size: 8px;
  letter-spacing: 0.18em;
}

.phone-memo-text {
  max-width: 9.3em;
  margin: auto 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1.07;
}

.phone-card-meta {
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line-light);
  color: rgba(252, 250, 242, 0.58);
  font-family: var(--mono);
  font-size: 8px;
}

.phone-card-meta strong {
  color: var(--saffron);
  font-weight: 700;
}

.phone-list {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.phone-list-row {
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--paper);
  color: var(--ink);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.3;
}

.phone-list-row span:last-child {
  flex: 0 0 auto;
  color: var(--sage);
  font-family: var(--mono);
  font-size: 8px;
}

.phone-dock {
  gap: 8px;
  margin-top: auto;
  padding: 8px;
  border-radius: 17px;
  background: var(--ink);
}

.phone-dock-button,
.phone-dock-send {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
}

.phone-dock-button {
  background: #2b383d;
  color: var(--paper);
}

.phone-dock-time {
  min-width: 0;
  flex: 1;
  gap: 5px;
  padding: 0 7px;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 8px;
}

.phone-dock-time span {
  color: var(--saffron);
}

.phone-dock-send {
  background: var(--saffron);
  color: var(--ink);
  font-size: 18px;
}

.visual-note {
  position: absolute;
  z-index: 2;
  padding: 14px 16px;
  border: 1px solid rgba(19, 29, 36, 0.12);
  background: var(--paper);
  box-shadow: 0 12px 25px rgba(19, 29, 36, 0.12);
  color: var(--ink);
}

.visual-note::before {
  position: absolute;
  top: -7px;
  left: 50%;
  width: 42px;
  height: 14px;
  background: rgba(236, 149, 40, 0.56);
  content: "";
  transform: translateX(-50%) rotate(-3deg);
}

.visual-note p {
  margin: 0;
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.visual-note small {
  display: block;
  margin-top: 8px;
  color: var(--sage);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-note--top {
  top: 16%;
  left: 1%;
  transform: rotate(-8deg);
}

.visual-note--bottom {
  right: 2%;
  bottom: 12%;
  padding: 12px 14px;
  transform: rotate(6deg);
}

.visual-note--bottom p {
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: 0;
}

.visual-stamp {
  position: absolute;
  right: 0;
  top: 3%;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 1px solid var(--sage);
  border-radius: 50%;
  color: var(--sage);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(12deg);
}

.visual-stamp span {
  color: var(--ink-soft);
  font-size: 8px;
}

@keyframes phone-settle {
  0%,
  100% {
    transform: rotate(4deg) translateY(0);
  }
  50% {
    transform: rotate(2deg) translateY(-10px);
  }
}

.section {
  padding: 126px 0;
}

.section--paper {
  background: var(--paper);
}

.section--ink {
  background: var(--ink);
  color: var(--paper);
}

.section--sage {
  background: var(--sage-soft);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 62px;
}

.section-kicker {
  color: var(--sage);
}

.section--ink .section-kicker {
  color: var(--saffron);
}

.section-heading h2,
.support-heading h2 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.9rem, 5vw, 5.1rem);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.98;
}

.section-heading h2 em,
.support-heading h2 em {
  color: var(--saffron);
  font-style: normal;
}

.section-heading > p {
  max-width: 34em;
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.85;
}

.section--ink .section-heading > p {
  color: rgba(252, 250, 242, 0.66);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.step {
  min-height: 270px;
  padding: 24px 30px 0 0;
  border-top: 1px solid var(--line);
}

.step + .step {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.step-number {
  display: block;
  margin-bottom: 50px;
  color: var(--saffron);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.step h3,
.feature-card h3,
.quick-card h3 {
  margin: 0 0 9px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.step p,
.feature-card p,
.quick-card p {
  max-width: 25em;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.feature-card {
  min-height: 255px;
  padding: 0 28px 0 0;
  border-top: 1px solid var(--line-light);
}

.feature-card + .feature-card {
  padding-left: 28px;
  border-left: 1px solid var(--line-light);
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 24px 0 44px;
  place-items: center;
  border: 1px solid rgba(236, 149, 40, 0.42);
  border-radius: 50%;
  color: var(--saffron);
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 700;
}

.feature-card h3 {
  color: var(--paper);
}

.feature-card p {
  color: rgba(252, 250, 242, 0.62);
}

.decision-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.77fr) minmax(0, 1.23fr);
  gap: 80px;
  align-items: center;
}

.decision-copy .section-kicker {
  color: var(--sage);
}

.decision-copy h2 {
  max-width: 10ch;
  margin: 18px 0 20px;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.98;
}

.decision-copy p {
  max-width: 30em;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.85;
}

.decision-demo {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.decision-demo-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--line);
}

.decision-demo-header h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1.1;
}

.decision-demo-header p {
  max-width: 22em;
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.decision-badge {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--saffron);
  color: var(--ink);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
}

.decision-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.decision-control {
  padding: 18px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--canvas);
}

.decision-control strong {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.3;
}

.decision-control span {
  color: var(--sage);
  font-family: var(--mono);
  font-size: 10px;
}

.decision-demo-note {
  margin: 17px 0 0;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.02em;
}

.privacy-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(240px, 1.1fr);
  gap: 50px;
  align-items: center;
  padding: 42px 46px;
  border-radius: var(--radius-lg);
  background: var(--sage);
  color: var(--paper);
}

.privacy-panel h2 {
  max-width: 8ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.96;
}

.privacy-panel h2 em {
  color: var(--saffron-soft);
  font-style: normal;
}

.privacy-panel p {
  max-width: 34em;
  margin: 0;
  color: rgba(252, 250, 242, 0.78);
  line-height: 1.85;
}

.privacy-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.privacy-point {
  padding: 7px 11px;
  border: 1px solid rgba(252, 250, 242, 0.25);
  border-radius: 999px;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
}

.support-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 38px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.support-card h2 {
  max-width: 16ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.4vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 1;
}

.support-card p {
  max-width: 30em;
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.site-footer {
  padding: 32px 0 42px;
  background: var(--canvas);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.footer-copy,
.footer-links {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.02em;
}

.footer-copy {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
}

.footer-links a:hover {
  color: var(--saffron);
}

/* Support page */
.subpage-hero {
  padding: 70px 0 105px;
}

.subpage-hero h1 {
  max-width: 10ch;
  margin-bottom: 25px;
}

.support-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.68fr);
  align-items: end;
  gap: 80px;
}

.support-ticket {
  position: relative;
  padding: 26px 28px;
  border-radius: var(--radius-md);
  background: var(--ink);
  box-shadow: var(--shadow);
  color: var(--paper);
  transform: rotate(3deg);
}

.support-ticket::before {
  position: absolute;
  top: -8px;
  left: 30%;
  width: 76px;
  height: 16px;
  background: rgba(236, 149, 40, 0.62);
  content: "";
  transform: rotate(-5deg);
}

.support-ticket .ticket-label {
  color: var(--saffron);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.support-ticket h2 {
  margin: 31px 0 18px;
  font-family: var(--display);
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.98;
}

.support-ticket p {
  margin: 0;
  color: rgba(252, 250, 242, 0.62);
  font-size: 13px;
  line-height: 1.75;
}

.ticket-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding-top: 15px;
  border-top: 1px solid var(--line-light);
  color: var(--saffron-soft);
  font-family: var(--mono);
  font-size: 10px;
}

.quick-section {
  padding: 96px 0 115px;
  background: var(--paper);
}

.support-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.support-heading h2 {
  max-width: 10ch;
  font-size: clamp(2.7rem, 4.5vw, 4.3rem);
}

.support-heading p {
  max-width: 27em;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.quick-card {
  min-height: 190px;
  padding: 24px 28px 0 0;
  border-top: 1px solid var(--line);
}

.quick-card + .quick-card {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.quick-card .quick-index {
  display: block;
  margin-bottom: 30px;
  color: var(--saffron);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.quick-card h3 {
  font-size: 18px;
}

.quick-card p {
  font-size: 13px;
}

.quick-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 13px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 800;
}

.quick-card a:hover {
  color: var(--saffron);
}

.faq-section {
  padding: 117px 0;
  background: var(--canvas);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.64fr) minmax(0, 1.36fr);
  gap: 100px;
  align-items: start;
}

.faq-intro h2 {
  max-width: 8ch;
  margin: 18px 0 18px;
  font-family: var(--display);
  font-size: clamp(2.7rem, 4.3vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.96;
}

.faq-intro p {
  max-width: 24em;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

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

.faq-list summary::after {
  color: var(--saffron);
  content: "+";
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  max-width: 55em;
  margin: -5px 42px 23px 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.85;
}

.support-note {
  padding: 104px 0;
  background: var(--ink);
  color: var(--paper);
}

.support-note-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 1.2fr);
  gap: 70px;
  align-items: center;
}

.support-note h2 {
  max-width: 9ch;
  margin: 18px 0 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.96;
}

.support-note h2 em {
  color: var(--saffron);
  font-style: normal;
}

.support-note-copy p {
  margin: 0;
  color: rgba(252, 250, 242, 0.7);
  line-height: 1.85;
}

.support-note-copy p + p {
  margin-top: 18px;
  color: rgba(252, 250, 242, 0.5);
  font-size: 13px;
}

.support-note .section-kicker {
  color: var(--saffron);
}

@media (max-width: 1020px) {
  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(370px, 1.1fr);
    gap: 20px;
  }

  .phone-wrap {
    right: 10%;
  }

  .visual-note--top {
    left: -4%;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 0;
  }

  .feature-card:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .feature-card:nth-child(3),
  .feature-card:nth-child(4) {
    border-top: 1px solid var(--line-light);
  }

  .support-hero-layout {
    gap: 50px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 680px);
  }

  .site-header {
    padding-top: 18px;
  }

  .header-inner {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .header-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    margin: 2px 0 0;
    padding-top: 15px;
    border-top: 1px solid var(--line);
  }

  .header-actions {
    margin-left: auto;
  }

  .hero,
  .support-hero-layout,
  .decision-layout,
  .privacy-panel,
  .faq-layout,
  .support-note-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 42px;
    min-height: auto;
    padding-top: 66px;
  }

  .hero h1,
  .subpage-hero h1 {
    max-width: 10ch;
  }

  .hero-visual {
    min-height: 600px;
  }

  .phone-wrap {
    right: 22%;
  }

  .section-heading,
  .support-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
  }

  .section-heading h2,
  .support-heading h2 {
    max-width: 10ch;
  }

  .decision-layout {
    gap: 45px;
  }

  .privacy-panel {
    gap: 30px;
  }

  .support-hero-layout {
    align-items: start;
  }

  .support-ticket {
    max-width: 410px;
    margin-left: auto;
  }

  .faq-layout,
  .support-note-inner {
    gap: 50px;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .header-nav {
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
    font-size: 12px;
    white-space: nowrap;
  }

  .header-actions {
    gap: 10px;
  }

  .header-support {
    padding: 0 12px;
    font-size: 12px;
  }

  .hero {
    padding: 58px 0 88px;
  }

  .hero h1,
  .subpage-hero h1 {
    font-size: clamp(3.15rem, 15vw, 4.8rem);
  }

  .hero-lede,
  .subpage-lede {
    font-size: 15px;
  }

  .hero-actions,
  .support-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .support-actions .button {
    width: 100%;
  }

  .hero-actions .text-link,
  .support-actions .text-link {
    justify-content: center;
  }

  .hero-visual {
    min-height: 530px;
    margin: 0 -10px;
    transform: scale(0.92);
    transform-origin: center top;
  }

  .phone-wrap {
    right: 50%;
    transform: translateX(50%) rotate(4deg);
  }

  .visual-note--top {
    top: 11%;
    left: 0;
  }

  .visual-note--bottom {
    right: 0;
    bottom: 8%;
  }

  .visual-stamp {
    right: 0;
    top: 0;
  }

  .section {
    padding: 90px 0;
  }

  .section-heading {
    margin-bottom: 43px;
  }

  .section-heading h2,
  .support-heading h2,
  .decision-copy h2,
  .privacy-panel h2,
  .support-note h2,
  .faq-intro h2 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .steps,
  .feature-grid,
  .quick-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .step,
  .quick-card,
  .feature-card {
    min-height: auto;
    padding: 22px 0 30px;
  }

  .step + .step,
  .quick-card + .quick-card,
  .feature-card + .feature-card {
    padding-left: 0;
    border-left: 0;
  }

  .step-number,
  .quick-card .quick-index {
    margin-bottom: 28px;
  }

  .feature-card:nth-child(3) {
    border-top: 1px solid var(--line-light);
  }

  .feature-icon {
    margin-bottom: 26px;
  }

  .decision-demo {
    padding: 19px;
  }

  .decision-controls {
    grid-template-columns: 1fr;
  }

  .privacy-panel,
  .support-card {
    padding: 29px 24px;
  }

  .support-card {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
  }

  .support-card .button {
    width: 100%;
  }

  .subpage-hero {
    padding: 56px 0 80px;
  }

  .support-ticket {
    padding: 23px 22px;
  }

  .support-ticket h2 {
    font-size: 33px;
  }

  .faq-section,
  .support-note {
    padding: 88px 0;
  }

  .faq-list summary {
    font-size: 15px;
  }

  .faq-list details p {
    margin-right: 0;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
