:root {
  --bg: #f6f3ee;
  --ink: #0e0f14;
  --muted: rgba(14, 15, 20, 0.68);
  --stroke: rgba(14, 15, 20, 0.12);
  --panel: rgba(255, 255, 255, 0.65);
  --panel2: rgba(255, 255, 255, 0.85);
  --radius: 10px;
  --radius2: 8px;
  --shadow: 0 24px 60px rgba(14, 15, 20, 0.12);
  --accent: #e11d48;
  --accent2: #0ea5e9;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    "Noto Sans", "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--bg), #ffffff);
  line-height: 1.55;
}

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

::selection {
  background: rgba(225, 29, 72, 0.18);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
  z-index: 1000;
}
.skip:focus {
  transform: translateY(0);
  outline: none;
}

.shell {
  min-height: 100%;
  display: grid;
  grid-template-columns: 280px 1fr;
}

.rail {
  position: sticky;
  top: 0;
  height: 100dvh;
  padding: 1.1rem 1rem;
  border-right: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.6));
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1.1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.logo__mark {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: 0.02em;
  background: transparent;
  border: 1px solid var(--stroke);
  position: relative;
}
.logo__mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 999px;
  border: 1px solid rgba(225, 29, 72, 0.22);
}

.logo__text {
  font-family: Fraunces, ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  position: relative;
}
.logo__text::after {
  content: "";
  position: absolute;
  left: 0;
  right: -10px;
  bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(225, 29, 72, 0));
}

.rail__nav {
  display: grid;
  align-content: start;
  gap: 0.2rem;
}

.rail__link {
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  color: rgba(14, 15, 20, 0.7);
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.rail__link:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.6);
  border-color: var(--stroke);
  transform: translateX(2px);
}
.rail__link[aria-current="true"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(225, 29, 72, 0.22);
}

.rail__cta {
  display: grid;
  gap: 0.55rem;
}
.rail__small {
  color: rgba(14, 15, 20, 0.62);
  font-size: 0.92rem;
  padding: 0.15rem 0.25rem;
}

.topbar {
  display: none;
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--stroke);
  background: rgba(246, 243, 238, 0.82);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: space-between;
}

.topbar__brand {
  font-weight: 760;
  letter-spacing: -0.02em;
}

.mobileNav {
  display: none;
  padding: 0.8rem 1rem 0;
}

.mobileNav a {
  display: block;
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--stroke);
  margin-bottom: 0.55rem;
  color: rgba(14, 15, 20, 0.86);
}

.mobileNav.is-open {
  display: block;
}

.main {
  min-width: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 0.95rem;
  border-radius: 10px;
  border: 1px solid var(--stroke);
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(14, 15, 20, 0.12);
}
.btn:active {
  transform: translateY(0);
}

.btn--solid {
  background: var(--ink);
  color: #fff;
  border-color: rgba(14, 15, 20, 0.9);
}

.btn--soft {
  background: rgba(255, 255, 255, 0.75);
}

.btn--link {
  background: transparent;
  border-color: transparent;
  color: rgba(14, 15, 20, 0.82);
  padding-inline: 0.2rem;
}
.btn--link:hover {
  transform: translateY(0);
  box-shadow: none;
  color: rgba(14, 15, 20, 0.98);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.iconbtn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.iconbtn__dots {
  width: 18px;
  height: 18px;
  background: radial-gradient(circle at 50% 25%, rgba(14, 15, 20, 0.92) 2px, transparent 3px),
    radial-gradient(circle at 50% 50%, rgba(14, 15, 20, 0.92) 2px, transparent 3px),
    radial-gradient(circle at 50% 75%, rgba(14, 15, 20, 0.92) 2px, transparent 3px);
}

.iconbtn__x {
  width: 18px;
  height: 18px;
  background: linear-gradient(45deg, transparent 45%, rgba(14, 15, 20, 0.92) 46% 54%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, rgba(14, 15, 20, 0.92) 46% 54%, transparent 55%);
}

.scene {
  position: relative;
  padding: 4.2rem 2.2rem 2.2rem;
  overflow: hidden;
}

.scene__inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  gap: 1.6rem;
}

.scene__bg {
  position: absolute;
  inset: -30%;
  background: radial-gradient(closest-side at 15% 15%, rgba(225, 29, 72, 0.08), transparent 60%),
    radial-gradient(closest-side at 70% 30%, rgba(14, 165, 233, 0.08), transparent 60%),
    radial-gradient(closest-side at 40% 80%, rgba(14, 15, 20, 0.06), transparent 65%);
  filter: blur(26px);
  opacity: 1;
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: rgba(14, 15, 20, 0.72);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.86rem;
}

h1 {
  margin: 0;
  font-family: Fraunces, ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: clamp(2.4rem, 5vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.sub {
  margin: 0.8rem 0 0;
  color: rgba(14, 15, 20, 0.68);
  max-width: 68ch;
  font-size: 1.08rem;
}

.actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.marquee {
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.75);
  overflow: hidden;
}

.marquee__track {
  display: flex;
  gap: 1.25rem;
  padding: 0.65rem 1.1rem;
  width: max-content;
  animation: move 22s linear infinite;
}
.marquee__track span {
  color: rgba(14, 15, 20, 0.72);
  font-weight: 650;
  letter-spacing: -0.01em;
}

@keyframes move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.meter {
  display: grid;
  gap: 0.65rem;
  max-width: 520px;
}
.meter__item {
  display: grid;
  gap: 0.3rem;
}
.meter__bar {
  height: 10px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.75);
  overflow: hidden;
}
.meter__bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(225, 29, 72, 0.9), rgba(14, 165, 233, 0.8));
}
.meter__label {
  color: rgba(14, 15, 20, 0.68);
  font-size: 0.95rem;
}

.band {
  padding: 3.1rem 2.2rem;
  border-top: 1px solid var(--stroke);
}
.band--dark {
  background: linear-gradient(180deg, rgba(14, 15, 20, 0.035), rgba(14, 15, 20, 0.015));
  border-top: 1px solid rgba(14, 15, 20, 0.1);
  border-bottom: 1px solid rgba(14, 15, 20, 0.1);
}
.band__inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}
.band__head {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

h2 {
  margin: 0;
  font-family: Fraunces, ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: clamp(1.55rem, 3.4vw, 2.1rem);
  letter-spacing: -0.03em;
}

h3 {
  margin: 0;
  letter-spacing: -0.02em;
}

.muted {
  color: var(--muted);
}

.big {
  font-size: 1.18rem;
  letter-spacing: -0.01em;
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: start;
}

.quoteWall {
  display: grid;
  gap: 0.6rem;
}
.quoteWall__item {
  padding: 0.85rem 0.95rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--stroke);
  color: rgba(14, 15, 20, 0.84);
}

.switcher {
  display: grid;
  gap: 0.85rem;
}

.switcher__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.chip {
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.75);
  color: rgba(14, 15, 20, 0.8);
  font-weight: 750;
  cursor: pointer;
}
.chip.is-active {
  background: rgba(14, 15, 20, 0.92);
  border-color: rgba(14, 15, 20, 0.92);
  color: #fff;
}

.switcher__panel {
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.8);
  padding: 1.15rem 1.15rem 1.05rem;
  box-shadow: var(--shadow);
}

.panel {
  display: none;
}
.panel.is-active {
  display: grid;
  gap: 0.55rem;
}
.panel p {
  margin: 0;
  color: rgba(14, 15, 20, 0.72);
}

.bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.35rem;
}
.bullets span {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--stroke);
  color: rgba(14, 15, 20, 0.75);
  font-weight: 650;
  font-size: 0.95rem;
}

.timeline {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.7rem;
}
.timeline__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.9rem;
  padding: 1rem 1.05rem;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.75);
}
.timeline__when {
  font-weight: 850;
  letter-spacing: -0.02em;
}
.timeline__title {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.toolbox {
  display: grid;
  gap: 0.7rem;
}
.toolbox__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.05rem;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.75);
}
.toolbox__label {
  font-weight: 750;
  color: rgba(255, 255, 255, 0.86);
  letter-spacing: -0.01em;
}

.qa {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}
details {
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.75);
  padding: 0.95rem 1.05rem;
}
summary {
  cursor: pointer;
  font-weight: 800;
  color: rgba(14, 15, 20, 0.92);
}
details p {
  margin: 0.7rem 0 0;
  color: rgba(14, 15, 20, 0.72);
}

.end {
  padding: 2.2rem 2.2rem 2.6rem;
  border-top: 1px solid var(--stroke);
}
.end__inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.end__brand {
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
}
.end__right {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}

.drawer {
  border: none;
  padding: 0;
  background: transparent;
}
.drawer::backdrop {
  background: rgba(0, 0, 0, 0.55);
}
.drawer__panel {
  width: min(620px, calc(100vw - 2rem));
  margin: 10vh auto 0;
  border-radius: 22px;
  border: 1px solid rgba(14, 15, 20, 0.18);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.05rem 1.05rem 0.9rem;
  border-bottom: 1px solid var(--stroke);
}
.drawer__title {
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 1.2rem;
}
.drawer__body {
  padding: 1rem 1.05rem 1.05rem;
  display: grid;
  gap: 1rem;
}

.contactGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.contactGrid__item {
  padding: 0.9rem 0.95rem;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.85);
}
.label {
  font-size: 0.9rem;
  color: rgba(14, 15, 20, 0.65);
  font-weight: 700;
}
.value {
  margin-top: 0.25rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}
.row {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.composer textarea {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border-radius: var(--radius2);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.9);
  color: rgba(14, 15, 20, 0.92);
  outline: none;
  margin-top: 0.45rem;
}
.composer textarea:focus {
  border-color: rgba(225, 29, 72, 0.35);
  box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.1);
}
.small {
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .shell {
    grid-template-columns: 1fr;
  }
  .rail {
    display: none;
  }
  .topbar {
    display: flex;
  }
  .scene,
  .band,
  .end {
    padding-inline: 1rem;
  }
  .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .timeline__row {
    grid-template-columns: 90px 1fr;
  }
  .toolbox__item {
    flex-direction: column;
    align-items: stretch;
  }
  .contactGrid {
    grid-template-columns: 1fr;
  }
}
