:root {
  --ink: #101a2b;
  --ink-2: #243149;
  --muted: #5b6678;
  --paper: #f5f2ec;
  --paper-2: #ece8df;
  --surface: #ffffff;
  --accent: #bf4e37;
  --accent-dark: #963824;
  --accent-soft: #f5ddd5;
  --teal: #1b756f;
  --line: #dfe2e6;
  --line-dark: rgba(255, 255, 255, 0.15);
  --shadow-sm: 0 8px 24px rgba(16, 26, 43, 0.07);
  --shadow-md: 0 20px 55px rgba(16, 26, 43, 0.12);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1160px;
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.1;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 5.3vw, 5.25rem);
  font-weight: 760;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.6vw, 3.45rem);
  font-weight: 740;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  font-weight: 720;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(76px, 9vw, 124px) 0;
}

.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-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid #e29464;
  outline-offset: 3px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 27px;
  height: 2px;
  background: currentColor;
}

.eyebrow-light {
  color: #f3a181;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  color: #fff;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(191, 78, 55, 0.2);
  font-size: 0.94rem;
  font-weight: 720;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button svg,
.text-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button:hover {
  background: var(--accent-dark);
  box-shadow: 0 12px 28px rgba(150, 56, 36, 0.25);
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--ink);
  background: transparent;
  border-color: #c7cbd1;
  box-shadow: none;
}

.button-secondary:hover {
  color: var(--ink);
  background: #fff;
  border-color: var(--ink);
  box-shadow: none;
}

.button-light {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
  box-shadow: 0 12px 28px rgba(16, 26, 43, 0.15);
}

.button-light:hover {
  color: var(--ink);
  background: var(--paper);
}

.button-small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.88rem;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--accent-dark);
  font-weight: 740;
}

.text-link svg {
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.91);
  border-bottom: 1px solid rgba(16, 26, 43, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
}

.brand-mark span {
  display: block;
  width: 2px;
  height: 9px;
  background: currentColor;
  border-radius: 999px;
}

.brand-mark span:nth-child(2),
.brand-mark span:nth-child(4) {
  height: 15px;
}

.brand-mark span:nth-child(3) {
  height: 22px;
  background: #f08968;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-nav > a:not(.button) {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--ink-2);
  font-size: 0.9rem;
  font-weight: 630;
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav > a:not(.button):hover::after,
.primary-nav > a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 50%;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 7vw, 88px) 0 clamp(62px, 8vw, 96px);
  background:
    radial-gradient(circle at 85% 18%, rgba(218, 126, 93, 0.17), transparent 28%),
    radial-gradient(circle at 8% 88%, rgba(36, 134, 126, 0.1), transparent 26%),
    var(--paper);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 39%;
  height: 100%;
  background-image: radial-gradient(rgba(16, 26, 43, 0.13) 1px, transparent 1px);
  background-size: 18px 18px;
  content: "";
  mask-image: linear-gradient(to left, #000, transparent);
  opacity: 0.38;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, 0.72fr);
  gap: clamp(48px, 8vw, 112px);
}

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

.hero-lede {
  max-width: 700px;
  margin-bottom: 10px;
  color: var(--ink-2);
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
  font-weight: 620;
}

.hero-support {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-2);
  font-size: 0.88rem;
  font-weight: 640;
}

.hero-highlights svg {
  width: 19px;
  height: 19px;
  padding: 3px;
  color: var(--teal);
  background: rgba(27, 117, 111, 0.13);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.voice-signature-card {
  position: relative;
  width: min(100%, 365px);
  min-height: 410px;
  overflow: hidden;
  justify-self: end;
  padding: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(216, 95, 67, 0.3), transparent 31%),
    linear-gradient(145deg, #18253b, #0b1321 76%);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.voice-signature-card::after {
  position: absolute;
  right: -70px;
  bottom: -105px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(255, 255, 255, 0.025), 0 0 0 56px rgba(255, 255, 255, 0.018);
  content: "";
  pointer-events: none;
}

.signature-card-button {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.signature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #aeb8c8;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.signature-top i {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  font-size: 0.75rem;
  font-style: normal;
  letter-spacing: -0.02em;
}

.signature-wave {
  display: flex;
  height: 108px;
  align-items: center;
  gap: 6px;
  margin: 34px 0 24px;
}

.signature-wave span {
  width: 4px;
  height: 22px;
  background: linear-gradient(to top, #d85f43, #f4af91);
  border-radius: 99px;
}

.signature-wave span:nth-child(2),
.signature-wave span:nth-child(12) { height: 35px; }
.signature-wave span:nth-child(3),
.signature-wave span:nth-child(11) { height: 58px; }
.signature-wave span:nth-child(4),
.signature-wave span:nth-child(10) { height: 84px; }
.signature-wave span:nth-child(5),
.signature-wave span:nth-child(9) { height: 52px; }
.signature-wave span:nth-child(6),
.signature-wave span:nth-child(8) { height: 96px; }
.signature-wave span:nth-child(7) { height: 70px; }
.signature-wave span:nth-child(13) { height: 28px; }

.signature-copy {
  position: relative;
  z-index: 1;
  display: flex;
  margin-bottom: 22px;
  flex-direction: column;
  color: #b5bfce;
  font-size: 1.18rem;
  line-height: 1.25;
}

.signature-copy strong {
  margin-top: 3px;
  color: #fff;
  font-size: 1.55rem;
}

.signature-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.signature-tags span {
  padding: 5px 9px;
  color: #d7dde6;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 700;
}

.signature-play-cue {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.signature-play-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(220, 96, 66, 0.3);
  transition: transform 180ms ease, background 180ms ease;
}

.signature-play-icon svg {
  width: 20px;
  fill: currentColor;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.signature-play-icon .icon-pause {
  display: none;
  fill: none;
}

.signature-play-cue > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.25;
}

.signature-play-cue strong {
  color: #fff;
  font-size: 0.78rem;
}

.signature-play-cue small {
  margin-top: 4px;
  color: #94a0b2;
  font-size: 0.68rem;
}

.signature-card-button:hover .signature-play-icon {
  background: #ef805d;
  transform: scale(1.06);
}

.signature-card-button.is-playing .icon-play {
  display: none;
}

.signature-card-button.is-playing .icon-pause {
  display: block;
}

.signature-card-button.is-playing .signature-wave span {
  animation: featured-wave 850ms ease-in-out infinite alternate;
}

.signature-card-button.is-playing .signature-wave span:nth-child(2n) {
  animation-delay: -380ms;
}

.signature-card-button.is-playing .signature-wave span:nth-child(3n) {
  animation-delay: -620ms;
}

@keyframes featured-wave {
  from { transform: scaleY(0.68); }
  to { transform: scaleY(1); }
}

.signature-availability {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 11px;
  padding-top: 22px;
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.availability-dot {
  width: 11px;
  height: 11px;
  background: #2a9b65;
  border: 3px solid #d9f2e4;
  border-radius: 50%;
  box-sizing: content-box;
}

.signature-availability > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.signature-availability strong {
  font-size: 0.82rem;
}

.signature-availability small {
  margin-top: 3px;
  color: #8f9bad;
  font-size: 0.72rem;
}

/* Section headings */
.section-heading {
  margin-bottom: clamp(38px, 5vw, 58px);
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p:not(.eyebrow),
.section-heading > div + p {
  max-width: 590px;
  margin-bottom: 0;
  color: var(--muted);
}

.section-heading-split {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}

.section-heading-split > p {
  justify-self: end;
}

.section-heading.centered {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading.centered h2 {
  margin-bottom: 16px;
}

.section-heading.centered > p {
  margin-inline: auto;
}

/* Demo cards */
.demos-section {
  background: #fff;
}

.demo-container {
  max-width: 1030px;
}

.demo-list {
  display: grid;
  gap: 14px;
}

.demo-card {
  position: relative;
  display: grid;
  min-height: 174px;
  overflow: hidden;
  align-items: center;
  padding: 28px 30px 28px 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  grid-template-columns: 52px minmax(300px, 1fr) minmax(280px, 0.9fr);
  gap: 18px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.demo-card::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: var(--card-accent);
  content: "";
}

.demo-card:hover {
  border-color: #c8cdd4;
  box-shadow: 0 14px 38px rgba(16, 26, 43, 0.1);
  transform: translateY(-2px);
}

.demo-number {
  align-self: start;
  padding-top: 7px;
  color: #9299a4;
  font-size: 0.75rem;
  font-weight: 780;
  letter-spacing: 0.12em;
}

.demo-category {
  margin-bottom: 7px;
  color: var(--card-accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.demo-copy h3 {
  margin-bottom: 8px;
}

.demo-copy > p:last-of-type {
  max-width: 530px;
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-list span {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 4px 9px;
  color: var(--ink-2);
  background: #f1f3f5;
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 680;
}

.demo-player {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px;
  background: #f7f7f6;
  border: 1px solid #eaebed;
  border-radius: 14px;
}

.demo-player > button {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  padding: 0;
  place-items: center;
  color: #fff;
  background: #aeb4bd;
  border: 0;
  border-radius: 50%;
  cursor: not-allowed;
}

.demo-player > button svg {
  width: 20px;
  fill: currentColor;
}

.player-track {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  gap: 8px;
}

.player-status {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 680;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.track-line {
  position: relative;
  display: block;
  width: 100%;
  height: 4px;
  overflow: hidden;
  background: #dadddf;
  border-radius: 99px;
}

.track-line i {
  position: absolute;
  left: 0;
  width: 23%;
  height: 100%;
  background: #b6bbc3;
  border-radius: inherit;
}

.soon-pill {
  padding: 5px 8px;
  color: #707987;
  background: #e8eaed;
  border-radius: 6px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.demo-player audio {
  width: 100%;
  min-height: 48px;
}

.section-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 6px 0;
}

.section-action p {
  margin: 0;
  color: var(--muted);
}

.section-action strong {
  color: var(--ink);
}

/* Voice styles */
.styles-section {
  background: var(--paper);
}

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

.style-card {
  min-height: 214px;
  padding: 27px 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(16, 26, 43, 0.09);
  border-radius: var(--radius);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.style-card:hover {
  background: #fff;
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.style-icon {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 35px;
  place-items: center;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.16em;
  text-indent: 0.16em;
}

.style-card h3 {
  font-size: 1.08rem;
}

.style-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

/* Studio */
.studio-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.studio-section::before {
  position: absolute;
  right: -16%;
  bottom: -55%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(191, 78, 55, 0.28), transparent 68%);
  content: "";
  pointer-events: none;
}

.studio-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
  gap: clamp(60px, 9vw, 120px);
}

.studio-intro {
  align-self: center;
}

.studio-intro h2 {
  color: #fff;
}

.studio-intro > p:not(.eyebrow) {
  max-width: 480px;
  color: #bbc3d0;
}

.studio-signal {
  display: flex;
  height: 55px;
  align-items: center;
  gap: 6px;
  margin-top: 35px;
}

.studio-signal span {
  width: 4px;
  height: 14px;
  background: #e07959;
  border-radius: 99px;
}

.studio-signal span:nth-child(2),
.studio-signal span:nth-child(8) {
  height: 25px;
}

.studio-signal span:nth-child(3),
.studio-signal span:nth-child(7) {
  height: 38px;
}

.studio-signal span:nth-child(4),
.studio-signal span:nth-child(6) {
  height: 50px;
}

.studio-signal span:nth-child(5) {
  height: 30px;
}

.studio-list {
  display: grid;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
}

.studio-list li {
  display: flex;
  min-height: 104px;
  align-items: flex-start;
  gap: 13px;
  padding: 22px 18px;
  border-bottom: 1px solid var(--line-dark);
}

.studio-list li:nth-child(odd) {
  border-right: 1px solid var(--line-dark);
}

.studio-list li > span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  color: #ffc3ae;
  background: rgba(224, 121, 89, 0.15);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
}

.studio-list li div {
  display: flex;
  flex-direction: column;
}

.studio-list strong {
  font-size: 0.9rem;
}

.studio-list small {
  margin-top: 4px;
  color: #9ca7b8;
  font-size: 0.72rem;
  line-height: 1.45;
}

/* Custom sample */
.custom-section {
  padding: clamp(56px, 6vw, 80px) 0;
  background: #fff;
}

.custom-card {
  display: grid;
  min-height: 245px;
  overflow: hidden;
  align-items: center;
  padding: clamp(32px, 5vw, 62px);
  color: #fff;
  background:
    radial-gradient(circle at 95% 0, rgba(255, 255, 255, 0.18), transparent 30%),
    var(--accent);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 55px rgba(191, 78, 55, 0.2);
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 32px;
}

.custom-card h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
}

.custom-card p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: #fee4dc;
}

.custom-icon {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.custom-icon svg {
  width: 40px;
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-width: 2.3;
}

/* About */
.about-section {
  background: var(--paper);
}

.about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(36px, 6vw, 75px);
}

.about-portrait {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  box-shadow: 12px 12px 0 var(--accent-soft);
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 34%;
  border: 4px solid #fff;
  border-radius: 50%;
}

.about-portrait i {
  position: absolute;
  right: 5px;
  bottom: 10px;
  width: 17px;
  height: 17px;
  background: var(--accent);
  border: 3px solid var(--paper);
  border-radius: 50%;
  box-sizing: content-box;
}

.about-copy {
  max-width: 710px;
}

.about-copy h2 {
  font-size: clamp(2rem, 3.5vw, 3.3rem);
}

.about-copy > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

/* Contact */
.contact-section {
  background: #fff;
}

.contact-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.82fr) minmax(470px, 1.18fr);
  gap: clamp(55px, 8vw, 105px);
}

.contact-intro > p:not(.eyebrow) {
  max-width: 510px;
  margin-bottom: 30px;
  color: var(--muted);
}

.email-card {
  display: flex;
  max-width: 450px;
  min-height: 78px;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid #e3dfd7;
  border-radius: var(--radius-sm);
  transition: border-color 180ms ease, transform 180ms ease;
}

.email-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.email-card > span:first-child {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
}

.email-card svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.email-card > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.email-card small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.email-card strong {
  overflow: hidden;
  margin-top: 2px;
  font-size: clamp(0.82rem, 1.4vw, 0.95rem);
  text-overflow: ellipsis;
}

.contact-notes {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.contact-notes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.86rem;
}

.contact-notes span {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  place-items: center;
  color: var(--teal);
  background: rgba(27, 117, 111, 0.1);
  border-radius: 50%;
  font-size: 0.67rem;
  font-weight: 800;
}

.contact-form {
  padding: clamp(25px, 4vw, 40px);
  background: var(--paper);
  border: 1px solid #e4e0d9;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

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

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

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 17px;
}

.field label {
  color: var(--ink-2);
  font-size: 0.78rem;
  font-weight: 720;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #cfd3d8;
  border-radius: 10px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 138px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8b929d;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(191, 78, 55, 0.13);
}

.form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-button:disabled {
  opacity: 0.68;
  cursor: wait;
  transform: none;
}

.form-button svg {
  fill: none;
  stroke: currentColor;
}

.form-status {
  min-height: 1.5em;
  margin: 12px 0 0;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
}

.form-status.is-error {
  color: #f3a181;
}

/* Footer */
.site-footer {
  padding: 56px 0 26px;
  color: #fff;
  background: #0b1321;
}

.footer-top {
  display: grid;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  grid-template-columns: 1fr auto;
  gap: 40px;
}

.brand-light .brand-mark {
  color: var(--ink);
  background: #fff;
}

.brand-light .brand-copy small {
  color: #8d98a9;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
  text-align: right;
}

.footer-contact small {
  margin-bottom: 4px;
  color: #8d98a9;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-contact a {
  font-size: 0.88rem;
  font-weight: 650;
}

.footer-contact a:hover,
.footer-bottom a:hover {
  color: #f3a181;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  color: #758195;
  font-size: 0.73rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
}

.sticky-contact {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 9px;
  padding: 12px 18px;
  color: #fff;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(16, 26, 43, 0.28);
  font-size: 0.82rem;
  font-weight: 740;
  transition: background 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.sticky-contact:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.sticky-contact svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.sticky-contact.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

/* Netlify form confirmation page */
.thank-you-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 85% 15%, rgba(216, 95, 67, 0.18), transparent 28%),
    radial-gradient(circle at 12% 88%, rgba(36, 134, 126, 0.12), transparent 26%),
    var(--paper);
}

.thank-you-page {
  display: grid;
  width: min(calc(100% - 36px), 760px);
  min-height: 100vh;
  align-content: center;
  gap: 28px;
  padding: 48px 0;
  margin-inline: auto;
}

.thank-you-brand {
  justify-self: center;
}

.thank-you-card {
  padding: clamp(35px, 7vw, 70px);
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.thank-you-card .eyebrow {
  justify-content: center;
}

.thank-you-card h1 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 7vw, 4.5rem);
}

.thank-you-card > p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 auto 28px;
  color: var(--muted);
}

.thank-you-icon {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
}

.thank-you-icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px;
  margin-bottom: 30px;
}

.thank-you-card > small {
  display: block;
  color: var(--muted);
}

.thank-you-card > small a {
  color: var(--accent-dark);
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
    gap: 48px;
  }

  .demo-card {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .demo-player {
    grid-column: 2;
  }

  .styles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .studio-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .contact-intro {
    max-width: 720px;
  }

  .contact-intro > p:not(.eyebrow) {
    max-width: 660px;
  }

  .custom-card {
    grid-template-columns: auto 1fr;
  }

  .custom-card .button {
    grid-column: 2;
    justify-self: start;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-contact {
    align-items: flex-end;
    text-align: right;
  }

}

@media (max-width: 800px) {
  :root {
    --header-height: 70px;
  }

  .menu-toggle {
    display: block;
  }

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

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

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

  .primary-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: #fff;
    box-shadow: 0 20px 30px rgba(16, 26, 43, 0.12);
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: max-height 240ms ease, opacity 180ms ease, padding 240ms ease;
  }

  .primary-nav.is-open {
    max-height: calc(100vh - var(--header-height));
    padding-top: 12px;
    padding-bottom: 20px;
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav > a:not(.button) {
    min-height: 54px;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav > a:not(.button)::after {
    display: none;
  }

  .primary-nav .button {
    margin-top: 14px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .hero-copy {
    max-width: 690px;
  }

  .voice-signature-card {
    width: min(82%, 365px);
    justify-self: center;
  }

  .section-heading-split {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-heading-split > p {
    justify-self: start;
  }

  .about-grid {
    grid-template-columns: auto 1fr;
  }

  .about-grid > .text-link {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 68px 0;
  }

  h1 {
    font-size: clamp(2.42rem, 12.1vw, 3.65rem);
  }

  h2 {
    font-size: clamp(2rem, 9.5vw, 2.8rem);
  }

  .brand-mark {
    width: 37px;
    height: 37px;
  }

  .hero {
    padding: 46px 0 68px;
  }

  .hero::before {
    width: 70%;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-highlights {
    display: grid;
    gap: 10px;
  }

  .voice-signature-card {
    width: 100%;
    min-height: 390px;
    padding: 25px;
  }

  .demo-card {
    padding: 24px 20px 22px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .demo-number {
    padding: 0;
  }

  .demo-player {
    grid-column: 1;
    padding: 13px;
  }

  .soon-pill {
    display: none;
  }

  .section-action {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .styles-grid {
    grid-template-columns: 1fr;
  }

  .style-card {
    min-height: 0;
  }

  .style-icon {
    margin-bottom: 25px;
  }

  .studio-list {
    grid-template-columns: 1fr;
  }

  .studio-list li:nth-child(odd) {
    border-right: 0;
  }

  .custom-section {
    padding: 30px 0;
  }

  .custom-card {
    padding: 34px 25px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .custom-card .button {
    width: 100%;
    grid-column: 1;
  }

  .custom-icon {
    width: 64px;
    height: 64px;
  }

  .about-grid {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .about-portrait {
    width: 92px;
    height: 92px;
    box-shadow: 8px 8px 0 var(--accent-soft);
  }

  .about-grid > .text-link {
    grid-column: 1;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 22px 18px;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .footer-contact {
    align-items: flex-start;
    text-align: left;
  }

  .footer-bottom {
    display: flex;
    gap: 12px;
  }

  .sticky-contact {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 11px 14px;
  }
}

@media (max-width: 360px) {
  .brand-copy small {
    display: none;
  }

  .email-card strong {
    font-size: 0.76rem;
  }

  .sticky-contact span {
    display: none;
  }

  .sticky-contact {
    width: 50px;
    justify-content: center;
    padding: 0;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Cinematic dark theme
   Layered navy surfaces keep the page premium and readable; orange is reserved for energy and action. */
:root {
  --ink: #081321;
  --ink-2: #d9e0ea;
  --muted: #a5b0c1;
  --paper: #091522;
  --paper-2: #0d1b2c;
  --surface: #101f33;
  --accent: #dc6042;
  --accent-dark: #ef805d;
  --accent-soft: rgba(220, 96, 66, 0.15);
  --teal: #55b8ae;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(255, 255, 255, 0.11);
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.22);
  --shadow-md: 0 24px 70px rgba(0, 0, 0, 0.38);
}

html {
  background: #06101c;
}

body {
  color: #f2eee7;
  background: #07111f;
  color-scheme: dark;
}

h1,
h2,
h3 {
  color: #fbf7f0;
}

.eyebrow,
.text-link {
  color: #f08a67;
}

.button {
  background: linear-gradient(135deg, #c45135, #9e321f);
  border-color: #c45135;
  box-shadow: 0 10px 28px rgba(220, 96, 66, 0.25);
}

.button:hover {
  color: #fff;
  background: linear-gradient(135deg, #c45135, #a93624);
  box-shadow: 0 14px 35px rgba(220, 96, 66, 0.32);
}

.button-secondary {
  color: #edf1f6;
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(255, 255, 255, 0.22);
}

.button-secondary:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.48);
}

.button-light {
  color: #091321;
  background: #f4efe7;
  border-color: #f4efe7;
}

.button-light:hover {
  color: #091321;
  background: #e6ded3;
  border-color: #e6ded3;
}

.site-header {
  background: rgba(6, 15, 27, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.brand-mark {
  background: #111f32;
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.brand-copy strong {
  color: #f8f4ee;
}

.brand-copy small,
.primary-nav > a:not(.button) {
  color: #aeb9c9;
}

.menu-toggle > span:not(.sr-only) {
  background: #f4efe7;
}

.primary-nav {
  color: #f4efe7;
}

.hero {
  background:
    radial-gradient(circle at 86% 17%, rgba(224, 102, 72, 0.19), transparent 30%),
    radial-gradient(circle at 9% 90%, rgba(61, 144, 137, 0.08), transparent 27%),
    linear-gradient(145deg, #07111f 0%, #0a1829 62%, #0b1727 100%);
}

.hero::before {
  background-image: radial-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  opacity: 0.28;
}

.hero-lede {
  color: #dbe2ec;
}

.hero-support,
.section-heading > p:not(.eyebrow),
.section-heading > div + p,
.demo-copy > p:last-of-type,
.style-card p,
.about-copy > p:last-child,
.contact-intro > p:not(.eyebrow),
.section-action p {
  color: var(--muted);
}

.hero-highlights li {
  color: #cbd3df;
}

.voice-signature-card {
  background:
    radial-gradient(circle at 88% 8%, rgba(224, 102, 72, 0.34), transparent 32%),
    linear-gradient(145deg, #16263d, #08111f 78%);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 35px 85px rgba(0, 0, 0, 0.5), 0 0 65px rgba(220, 96, 66, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.voice-signature-card:hover {
  border-color: rgba(240, 138, 103, 0.42);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.54), 0 0 75px rgba(220, 96, 66, 0.12);
  transform: translateY(-3px);
}

.signature-top {
  color: #b8c2d0;
}

.signature-tags span {
  color: #dce2eb;
  background: rgba(255, 255, 255, 0.07);
}

.demos-section {
  background:
    radial-gradient(circle at 5% 15%, rgba(220, 96, 66, 0.055), transparent 25%),
    #091522;
}

.demo-card {
  background: linear-gradient(145deg, #122239, #0e1c2f);
  border-color: rgba(255, 255, 255, 0.11);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.21);
}

.demo-card:hover {
  border-color: rgba(240, 138, 103, 0.48);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32), 0 0 35px rgba(220, 96, 66, 0.06);
}

.demo-number {
  color: #7f8ba0;
}

.tag-list span {
  color: #cdd5e0;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.demo-player {
  background: #091625;
  border-color: rgba(255, 255, 255, 0.1);
}

.demo-player audio {
  color-scheme: dark;
  accent-color: var(--accent);
}

.player-status {
  color: #9ba7b8;
}

.section-action strong {
  color: #f3efe8;
}

.styles-section {
  background:
    radial-gradient(circle at 96% 30%, rgba(220, 96, 66, 0.07), transparent 27%),
    #0b1828;
}

.style-card {
  background: rgba(17, 33, 54, 0.9);
  border-color: rgba(255, 255, 255, 0.1);
}

.style-card:hover {
  background: #152741;
  border-color: rgba(240, 138, 103, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.style-icon {
  color: #f19575;
  background: rgba(220, 96, 66, 0.13);
  border: 1px solid rgba(220, 96, 66, 0.2);
}

.studio-section {
  background:
    radial-gradient(circle at 98% 90%, rgba(220, 96, 66, 0.22), transparent 33%),
    linear-gradient(145deg, #07111e, #0b1727);
}

.custom-section {
  background: #081421;
}

.custom-card {
  background:
    radial-gradient(circle at 90% 5%, rgba(224, 102, 72, 0.3), transparent 31%),
    linear-gradient(140deg, #16263d, #091321 74%);
  border: 1px solid rgba(240, 138, 103, 0.27);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38), 0 0 55px rgba(220, 96, 66, 0.07);
}

.custom-card p:last-child {
  color: #b5bfce;
}

.about-section {
  background:
    radial-gradient(circle at 8% 90%, rgba(220, 96, 66, 0.07), transparent 22%),
    #0d1a2b;
}

.about-portrait {
  box-shadow: 12px 12px 0 rgba(220, 96, 66, 0.15), 0 20px 45px rgba(0, 0, 0, 0.28);
}

.about-portrait img {
  border-color: #d9d3cb;
}

.about-portrait i {
  border-color: #0d1a2b;
}

.contact-section {
  background:
    radial-gradient(circle at 92% 20%, rgba(220, 96, 66, 0.08), transparent 26%),
    #081421;
}

.email-card {
  background: #111f33;
  border-color: rgba(255, 255, 255, 0.11);
}

.email-card:hover {
  border-color: rgba(240, 138, 103, 0.65);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.23);
}

.email-card small,
.contact-notes li {
  color: var(--muted);
}

.contact-form {
  background: linear-gradient(145deg, #111f33, #0d1a2b);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
}

.field label {
  color: #d9e0e9;
}

.field input,
.field select,
.field textarea {
  color: #f4efe8;
  background: #081421;
  border-color: rgba(255, 255, 255, 0.17);
  color-scheme: dark;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #758297;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #e17250;
  box-shadow: 0 0 0 3px rgba(220, 96, 66, 0.17), 0 8px 25px rgba(0, 0, 0, 0.18);
}

.site-footer {
  background: #050c16;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-light .brand-mark {
  color: #091321;
  background: #f1ece5;
  border-color: #f1ece5;
}

.footer-contact a {
  color: #e3e8ef;
}

.sticky-contact {
  display: none;
  background: linear-gradient(135deg, #c45135, #9e321f);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.38), 0 0 30px rgba(220, 96, 66, 0.14);
}

.sticky-contact:hover {
  background: linear-gradient(135deg, #c45135, #a93624);
}

.thank-you-body {
  background:
    radial-gradient(circle at 84% 12%, rgba(220, 96, 66, 0.2), transparent 28%),
    radial-gradient(circle at 12% 90%, rgba(61, 144, 137, 0.08), transparent 26%),
    #07111f;
}

.thank-you-card {
  background: linear-gradient(145deg, #122138, #0c192a);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.thank-you-card > p:not(.eyebrow),
.thank-you-card > small {
  color: var(--muted);
}

.thank-you-card > small a {
  color: #f08a67;
}

@media (max-width: 800px) {
  .primary-nav {
    background: #091522;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.38);
  }

  .primary-nav > a:not(.button) {
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .sticky-contact {
    display: flex;
  }
}

@media (max-width: 620px) {
  .about-portrait {
    box-shadow: 8px 8px 0 rgba(220, 96, 66, 0.15), 0 15px 35px rgba(0, 0, 0, 0.28);
  }

  .thank-you-actions {
    display: grid;
  }

  .thank-you-actions .button {
    width: 100%;
  }
}
