:root {
  color-scheme: dark;
  --bg: #020608;
  --ink: #f8fbff;
  --muted: #a9b7c1;
  --soft: #73848e;
  --line: rgba(255, 255, 255, 0.12);
  --panel: rgba(255, 255, 255, 0.07);
  --panel-strong: rgba(255, 255, 255, 0.11);
  --teal: #16c8d0;
  --teal-deep: #07959d;
  --amber: #e1b84a;
  --paper: #f2f4f2;
  --paper-ink: #10171b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.75;
}

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

button,
input {
  font: inherit;
}

.concept-page {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(225, 184, 74, 0.16), transparent 22rem),
    radial-gradient(circle at 82% 8%, rgba(22, 200, 208, 0.16), transparent 28rem),
    linear-gradient(180deg, #020608 0%, #03090c 44%, #020608 100%);
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 960px;
  padding: 26px 28px 0;
  isolation: isolate;
}

.hero-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 6, 8, 0.96) 0%, rgba(2, 6, 8, 0.82) 30%, rgba(2, 6, 8, 0.32) 62%, rgba(2, 6, 8, 0.06) 100%),
    linear-gradient(180deg, rgba(2, 6, 8, 0) 0%, rgba(2, 6, 8, 0.78) 100%);
  content: "";
}

.site-header,
.brand,
.flow-track,
.signup-section {
  display: flex;
  align-items: center;
}

.site-header {
  position: relative;
  z-index: 5;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
}

.brand {
  gap: 12px;
  font-size: 24px;
}

.brand-name {
  font-weight: 600;
  line-height: 1.1;
}

.brand-mark {
  display: block;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.header-cta,
.signup-form button {
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #22d3dc, #07959d);
  color: #edffff;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(7, 149, 157, 0.32);
}

.header-cta {
  padding: 12px 21px;
  font-size: 14px;
}

.hero-inner {
  position: static;
  display: grid;
  grid-template-columns: minmax(400px, 0.9fr) minmax(520px, 1.4fr);
  gap: 34px;
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 112px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-top: 18px;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.section-kicker {
  margin-bottom: 20px;
}

.eyebrow {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(225, 184, 74, 0.95);
  border-radius: 8px;
  background: rgba(225, 184, 74, 0.12);
  box-shadow:
    0 0 0 4px rgba(225, 184, 74, 0.08),
    0 14px 36px rgba(225, 184, 74, 0.16);
  padding: 6px 18px;
  color: #ffe37a;
  font-size: 15px;
}

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

h1 {
  max-width: 640px;
  margin: 41px 0 29px;
  font-size: clamp(54px, 5.7vw, 86px);
  line-height: 1.13;
  letter-spacing: 0;
}

.headline-accent {
  color: var(--teal);
}

.headline-nowrap {
  color: inherit;
  white-space: nowrap;
}

.lead {
  max-width: 550px;
  margin-bottom: 38px;
  color: #d8e3e8;
  font-size: 18px;
  font-weight: 650;
}

.signup-form {
  display: grid;
  grid-template-columns: minmax(230px, 330px) 210px;
  gap: 14px;
  max-width: 560px;
}

.signup-form input {
  min-width: 0;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  outline: 0;
  background: rgba(0, 0, 0, 0.42);
  color: #ffffff;
  padding: 0 18px;
}

.signup-form input:focus {
  border-color: rgba(22, 200, 208, 0.82);
  box-shadow: 0 0 0 4px rgba(22, 200, 208, 0.14);
}

.signup-form button {
  min-height: 58px;
  cursor: pointer;
}

.form-message {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: #88eef3;
  font-size: 13px;
}

.hero-visual {
  --hero-visual-offset: clamp(80px, calc((100vw - 1080px) * 0.36), 340px);
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 148px;
  width: min(1130px, 76vw);
  height: 850px;
  opacity: 0.98;
  transform: translateX(calc(-50% + var(--hero-visual-offset))) rotate(-1.5deg);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 8, 0.68), rgba(2, 6, 8, 0.12) 52%, rgba(2, 6, 8, 0.36)),
    linear-gradient(180deg, rgba(2, 6, 8, 0), rgba(2, 6, 8, 0.78) 96%);
  content: "";
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
  filter: drop-shadow(0 34px 80px rgba(0, 0, 0, 0.64));
}

.section {
  padding: 92px 28px;
}

.pain-section {
  --pain-plate-top: 52px;
  position: relative;
  background: transparent;
  color: var(--paper-ink);
  isolation: isolate;
}

.pain-section::before {
  position: absolute;
  z-index: -1;
  top: var(--pain-plate-top);
  bottom: 52px;
  left: 50%;
  width: min(1320px, calc(100% - 56px));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 0%, rgba(22, 200, 208, 0.1), transparent 22rem),
    linear-gradient(180deg, #f4f6f4 0%, #e8eeec 100%);
  content: "";
  transform: translateX(-50%);
}

.pain-section .section-kicker,
.pain-section .pain-grid span {
  color: var(--teal-deep);
}

.pain-section .section-heading p:not(.section-kicker):not(.pain-bubble) {
  color: #53636b;
}

.pain-section .section-heading {
  max-width: 960px;
}

.pain-section .section-heading h2 {
  white-space: nowrap;
}

.pain-bubble {
  position: absolute;
  z-index: 2;
  top: var(--pain-plate-top);
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 0;
  border: 1px solid rgba(7, 149, 157, 0.25);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(16, 23, 27, 0.08);
  color: #142026;
  padding: 7px 20px;
  font-size: 14px;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.pain-bubble::after {
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 16px;
  height: 16px;
  border-right: 1px solid rgba(7, 149, 157, 0.18);
  border-bottom: 1px solid rgba(7, 149, 157, 0.18);
  background: #ffffff;
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.story-card h2,
.signup-section h2 {
  margin: 10px 0 16px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.35;
}

.section-heading p:not(.section-kicker):not(.pain-bubble),
.signup-section p,
.story-card p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 620;
}

.pain-grid,
.feature-grid {
  display: grid;
  max-width: 1160px;
  margin: 0 auto;
  gap: 18px;
}

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

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

.pain-grid article,
.feature-grid article,
.flow-track article,
.voice-card,
.story-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 16, 20, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pain-grid article {
  display: grid;
  min-height: 332px;
  grid-template-rows: auto auto auto 1fr;
  border-color: rgba(16, 23, 27, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 20px 48px rgba(16, 23, 27, 0.08);
}

.pain-grid article {
  padding: 18px 18px 22px;
}

.pain-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(7, 149, 157, 0.14);
  border-radius: 7px;
  margin-bottom: 16px;
  background: #dfe7e7;
}

.pain-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(7, 149, 157, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48);
  content: "";
  pointer-events: none;
}

.pain-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pain-icon {
  position: relative;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border: 1px solid rgba(7, 149, 157, 0.18);
  border-radius: 14px;
  margin-bottom: 16px;
  background:
    radial-gradient(circle at 68% 24%, rgba(22, 200, 208, 0.22), transparent 2.6rem),
    rgba(255, 255, 255, 0.68);
}

.pain-icon::before,
.pain-icon::after,
.pain-icon i {
  position: absolute;
  display: block;
  content: "";
}

.pain-team::before {
  left: 16px;
  top: 12px;
  width: 17px;
  height: 17px;
  border: 3px solid var(--teal-deep);
  border-radius: 50%;
}

.pain-team::after {
  left: 11px;
  bottom: 10px;
  width: 28px;
  height: 15px;
  border: 3px solid var(--teal-deep);
  border-radius: 18px 18px 6px 6px;
}

.pain-team i {
  right: 8px;
  top: 12px;
  width: 10px;
  height: 28px;
  border-radius: 999px;
  background: rgba(7, 149, 157, 0.26);
}

.pain-visit::before {
  left: 11px;
  top: 12px;
  width: 30px;
  height: 25px;
  border: 3px solid var(--teal-deep);
  border-radius: 5px;
}

.pain-visit::after {
  left: 17px;
  top: 20px;
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: var(--teal-deep);
  box-shadow: 0 8px 0 rgba(7, 149, 157, 0.42);
}

.pain-visit i {
  left: 22px;
  bottom: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-deep);
}

.pain-growth::before {
  left: 12px;
  bottom: 12px;
  width: 28px;
  height: 20px;
  border-left: 3px solid rgba(7, 149, 157, 0.36);
  border-bottom: 3px solid rgba(7, 149, 157, 0.36);
}

.pain-growth::after {
  left: 16px;
  bottom: 22px;
  width: 25px;
  height: 3px;
  border-radius: 999px;
  background: var(--teal-deep);
  transform: rotate(-26deg);
}

.pain-growth i {
  right: 9px;
  top: 14px;
  width: 11px;
  height: 11px;
  border-top: 3px solid var(--teal-deep);
  border-right: 3px solid var(--teal-deep);
  transform: rotate(45deg);
}

.pain-pause::before,
.pain-pause::after {
  top: 13px;
  width: 8px;
  height: 26px;
  border-radius: 999px;
  background: var(--teal-deep);
}

.pain-pause::before {
  left: 16px;
}

.pain-pause::after {
  right: 16px;
}

.pain-pause i {
  left: 9px;
  bottom: 7px;
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: rgba(7, 149, 157, 0.26);
}

.pain-grid span {
  color: var(--teal);
  font-weight: 950;
}

.flow-track span {
  display: block;
  margin-bottom: 12px;
  color: var(--teal);
  font-family: "DIN Condensed", "DIN Alternate", "Bahnschrift Condensed", "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 44px;
  font-weight: 300;
  font-stretch: condensed;
  line-height: 1;
  text-align: center;
}

.feature-grid b {
  color: var(--teal);
  font-weight: 300;
}

.pain-grid h3,
.feature-grid h3,
.flow-track h3 {
  margin: 10px 0 8px;
  font-size: 18px;
  line-height: 1.45;
}

.feature-grid h3 {
  color: var(--teal);
  font-size: 19px;
  margin-bottom: 16px;
}

.flow-track h3 {
  margin-bottom: 16px;
}

.pain-grid p,
.feature-grid p,
.flow-track p {
  margin: 0;
  color: #a5b5bf;
  font-size: 14px;
}

.pain-grid h3 {
  color: var(--paper-ink);
  margin-bottom: 16px;
}

.pain-grid p {
  color: #5f6c73;
}

.feature-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.055));
}

.feature-grid article {
  position: relative;
  display: grid;
  min-height: 360px;
  grid-template-rows: auto auto auto 1fr auto;
  align-content: start;
  padding: 22px;
}

.feature-visual {
  width: 100%;
  aspect-ratio: 386 / 246;
  overflow: hidden;
  border: 1px solid rgba(126, 235, 216, 0.22);
  border-radius: 7px;
  margin: 10px 0 18px;
  background: rgba(245, 255, 252, 0.96);
}

.feature-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-grid small {
  display: block;
  align-self: end;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
  color: #d8e6eb;
  font-size: 13px;
  font-weight: 820;
}

.flow-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.flow-track {
  align-items: stretch;
  justify-content: center;
  max-width: 1160px;
  margin: 0 auto;
}

.flow-track article {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 330px;
  border-color: rgba(126, 235, 216, 0.28);
  background:
    radial-gradient(circle at 50% 0%, rgba(158, 255, 232, 0.14), transparent 7.5rem),
    linear-gradient(180deg, rgba(207, 255, 242, 0.12), rgba(22, 200, 208, 0.055));
  box-shadow:
    inset 0 1px 0 rgba(221, 255, 247, 0.18),
    0 20px 54px rgba(13, 79, 73, 0.18);
  padding: 24px;
}

.flow-visual {
  position: relative;
  height: 138px;
  overflow: hidden;
  border: 1px solid rgba(176, 255, 237, 0.24);
  border-radius: 8px;
  margin: 0 0 18px;
  background:
    radial-gradient(circle at 76% 18%, rgba(176, 255, 237, 0.24), transparent 3rem),
    linear-gradient(135deg, rgba(218, 255, 246, 0.18), rgba(84, 218, 190, 0.09));
  box-shadow: inset 0 0 42px rgba(180, 255, 235, 0.12);
}

.flow-visual img {
  display: block;
  width: 100%;
  height: 100%;
  filter: brightness(1.28) saturate(0.96) sepia(0.06) hue-rotate(16deg);
  object-fit: cover;
}

.flow-track article + article {
  margin-left: 18px;
}

.flow-track article + article::before {
  position: absolute;
  top: 50%;
  left: -18px;
  width: 18px;
  color: #e9ffff;
  content: "→";
  font-weight: 900;
  text-align: center;
  transform: translateY(-50%);
}

.voice-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 18% 4%, rgba(22, 200, 208, 0.13), transparent 24rem),
    radial-gradient(circle at 88% 18%, rgba(225, 184, 74, 0.12), transparent 22rem);
}

.voice-section::before {
  position: absolute;
  right: max(20px, calc(50% - 610px));
  bottom: 60px;
  width: min(430px, 58vw);
  height: 260px;
  opacity: 0.34;
  background-image:
    radial-gradient(circle, rgba(225, 184, 74, 0.9) 0 1px, transparent 1.7px),
    radial-gradient(circle, rgba(22, 200, 208, 0.62) 0 1px, transparent 1.8px);
  background-position: 0 0, 16px 19px;
  background-size: 24px 22px, 31px 29px;
  clip-path: polygon(0 72%, 13% 48%, 27% 58%, 42% 30%, 56% 50%, 72% 20%, 100% 7%, 100% 100%, 0 100%);
  content: "";
}

.voice-heading-title {
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.feature-heading-title {
  white-space: nowrap;
}

.voice-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1160px;
  margin: 0 auto;
  gap: 22px;
}

.voice-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background:
    radial-gradient(circle at 50% 0%, rgba(158, 255, 232, 0.13), transparent 8rem),
    linear-gradient(180deg, rgba(207, 255, 242, 0.11), rgba(22, 200, 208, 0.05));
  padding: 14px 14px 18px;
}

.voice-card::before {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(22, 200, 208, 0.28);
  border-radius: 999px;
  background: rgba(2, 6, 8, 0.74);
  color: #eaffff;
  content: "“";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(2, 6, 8, 0.28);
}

.voice-visual {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(231, 250, 247, 0.82);
  border-radius: 7px;
  background: #f4fbf9;
  box-shadow:
    0 16px 34px rgba(2, 6, 8, 0.22),
    inset 0 0 0 6px rgba(255, 255, 255, 0.88);
  padding: 7px;
}

.voice-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(2, 6, 8, 0.18)),
    linear-gradient(90deg, rgba(22, 200, 208, 0.12), transparent 46%, rgba(225, 184, 74, 0.1));
  content: "";
}

.voice-visual img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.voice-card p {
  position: relative;
  margin: 18px 2px 0;
  border: 1px solid rgba(219, 246, 241, 0.84);
  border-radius: 8px;
  background: #f3fbf9;
  padding: 20px 20px 18px;
  color: #122127;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.78;
  box-shadow: 0 14px 30px rgba(2, 6, 8, 0.16);
}

.voice-card p::before {
  position: absolute;
  top: -8px;
  left: 28px;
  width: 15px;
  height: 15px;
  border-top: 1px solid rgba(219, 246, 241, 0.84);
  border-left: 1px solid rgba(219, 246, 241, 0.84);
  background: #f3fbf9;
  content: "";
  transform: rotate(45deg);
}

.voice-card span {
  display: block;
  margin: 14px 4px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 14px;
  color: #99acb7;
  font-size: 13px;
  font-weight: 860;
}

.story-section {
  padding-top: 138px;
  padding-bottom: 138px;
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 230, 151, 0.3), transparent 24rem),
    radial-gradient(circle at 86% 28%, rgba(225, 184, 74, 0.22), transparent 26rem),
    linear-gradient(135deg, #fbf4dd 0%, #e9d9aa 48%, #d7bd78 100%);
}

.story-card {
  max-width: 1080px;
  margin: 0 auto;
  border: 0;
  background: transparent;
  color: #1b1a14;
  box-shadow: none;
  padding: 0;
  text-align: center;
}

.story-card .section-kicker {
  color: #8a650d;
}

.story-card p {
  color: #4f4736;
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
}

.story-card h2 {
  margin-bottom: 34px;
}

.story-card .story-heading-title {
  font-size: clamp(30px, 3vw, 40px);
  white-space: nowrap;
}

.story-card p {
  margin-bottom: 18px;
}

.story-card p:last-child {
  margin-bottom: 0;
}

.signup-section {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 34px;
  max-width: 760px;
  margin: 0 auto;
  padding: 74px 28px 86px;
}

.signup-section > div {
  min-width: 0;
  width: 100%;
}

.signup-section h2 {
  display: inline-block;
  position: relative;
  left: 50%;
  margin-bottom: 8px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.signup-section h2 span {
  display: inline;
}

.footer-form {
  width: min(560px, 100%);
  max-width: none;
}

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

@media (max-width: 980px) {
  .hero-section {
    min-height: 900px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    --hero-visual-offset: clamp(0px, calc((100vw - 680px) * 0.22), 80px);
    top: 108px;
    right: auto;
    width: min(980px, 128vw);
    height: 650px;
    opacity: 0.45;
  }

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

  .feature-grid article + article::before {
    display: none;
  }

  .flow-track,
  .signup-section {
    display: grid;
  }

  .flow-track article + article {
    margin: 18px 0 0;
  }

  .flow-track article + article::before {
    display: none;
  }
}

@media (max-width: 680px) {
  .hero-section {
    min-height: 760px;
    padding: 20px 16px 0;
  }

  .site-header {
    gap: 16px;
  }

  .brand {
    font-size: 20px;
  }

  .header-cta {
    padding: 10px 13px;
    font-size: 12px;
  }

  .hero-inner {
    padding-top: 56px;
  }

  h1 {
    font-size: clamp(40px, 11vw, 50px);
  }

  .lead {
    font-size: 16px;
  }

  .signup-form,
  .footer-form {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    --hero-visual-offset: 0px;
    top: 76px;
    right: auto;
    width: min(860px, 168vw);
    height: 650px;
    opacity: 0.42;
    transform: translateX(-50%) rotate(0deg);
  }

  .hero-visual::after {
    background:
      linear-gradient(90deg, rgba(2, 6, 8, 0.72), rgba(2, 6, 8, 0.08) 58%, rgba(2, 6, 8, 0.5)),
      linear-gradient(180deg, rgba(2, 6, 8, 0), rgba(2, 6, 8, 0.74) 100%);
  }

  .hero-visual img {
    object-position: 54% 32%;
  }

  .section {
    padding: 64px 16px;
  }

  .story-section {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .story-card .story-heading-title {
    font-size: clamp(28px, 7vw, 34px);
    white-space: normal;
  }

  .feature-heading-title {
    white-space: normal;
  }

  .voice-heading-title {
    display: block;
    position: static;
    left: auto;
    transform: none;
    white-space: normal;
  }

  .signup-section h2 {
    font-size: clamp(17px, 4.3vw, 28px);
  }

  .pain-section::before {
    bottom: 24px;
    width: calc(100% - 32px);
  }

  .pain-section {
    --pain-plate-top: 24px;
  }

  .pain-section .section-heading h2 {
    white-space: normal;
  }

  .pain-section .section-heading p:not(.section-kicker):not(.pain-bubble) {
    max-width: 30rem;
    margin-right: auto;
    margin-left: auto;
    padding-right: 18px;
    padding-left: 18px;
  }

  .pain-grid h3 {
    font-size: 20px;
    line-height: 1.38;
  }

  .feature-grid h3 {
    font-size: 22px;
    line-height: 1.34;
  }

  .pain-grid,
  .feature-grid,
  .voice-grid {
    grid-template-columns: 1fr;
  }

  .voice-card p {
    font-size: 16px;
    line-height: 1.78;
  }

  .story-card {
    padding: 28px;
  }
}
