:root {
  --bg: #090b0c;
  --surface: #111516;
  --surface-2: #171c1e;
  --line: #2d3638;
  --text: #ffffff;
  --muted: #a9b4b7;
  --soft: #dce5e7;
  --accent: #10d8c4;
  --accent-hover: #0fbfaf;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 14px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  background: rgba(9, 11, 12, 0.92);
  backdrop-filter: blur(14px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.corner-logo {
  position: relative;
  padding: 7px 11px;
  color: #ffffff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1px;
  white-space: nowrap;
}

.corner-logo::before,
.corner-logo::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 100%;
  pointer-events: none;
}

.corner-logo::before {
  top: 0;
  left: 0;
  border-top: 1.5px solid #ffffff;
  border-left: 1.5px solid #ffffff;
}

.corner-logo::after {
  right: 0;
  bottom: 0;
  border-right: 1.5px solid #ffffff;
  border-bottom: 1.5px solid #ffffff;
}

.logo-divider {
  width: 1px;
  height: 38px;
  background: #3a4042;
  flex-shrink: 0;
}

.wordmark {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.wordmark strong {
  display: block;
  color: #ffffff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1;
  white-space: nowrap;
}

.wordmark-dot {
  display: inline;
  color: var(--accent);
}

.wordmark > span {
  color: var(--accent);
  font-size: 8px;
  letter-spacing: 3px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 26px);
  color: var(--soft);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.6px;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav a:hover {
  color: var(--accent);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  min-height: calc(100vh - 68px);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 110px) 0 clamp(42px, 7vw, 86px);
}

.hero-copy,
.suite-preview {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: #ffffff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(34px, 5.2vw, 76px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
  white-space: nowrap;
}

.hero-suite-label {
  margin: 12px 0 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 4px;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-text {
  width: min(620px, 100%);
  margin: 22px 0 0;
  color: var(--soft);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}

.primary-action {
  background: var(--accent);
  color: #ffffff;
}

.primary-action:hover {
  background: var(--accent-hover);
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.suite-preview {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101314;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.preview-top {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid #242b2d;
  background: #15191a;
}

.preview-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #454b4d;
}

.preview-top span:first-child {
  background: var(--accent);
}

.preview-top strong {
  margin-left: auto;
  color: #ffffff;
  font-size: 12px;
}

.preview-body {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
}

.preview-sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-right: 1px solid #242b2d;
  background: #0d1011;
}

.preview-sidebar span {
  width: 24px;
  height: 24px;
  border: 1px solid #30383a;
  border-radius: 6px;
  background: #171c1e;
}

.preview-sidebar .active {
  border-color: var(--accent);
  background: rgba(16, 216, 196, 0.16);
}

.preview-main {
  min-width: 0;
  padding: 18px;
}

.preview-search {
  min-height: 38px;
  padding: 10px 12px;
  border: 1px solid #384143;
  border-radius: 6px;
  background: #202526;
  color: #9fa9ac;
  font-size: 13px;
}

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

.preview-grid article {
  overflow: hidden;
  min-width: 0;
  border: 1px solid #30383a;
  border-radius: 6px;
  background: #171c1e;
}

.preview-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.preview-thumb-image {
  object-fit: cover;
  object-position: top center;
  background: #f7f8f8;
}

.video-library-art {
  background: linear-gradient(135deg, #103936, #10d8c4 48%, #f4f7f7 49%, #222829);
}

.timestamp-art {
  background: repeating-linear-gradient(90deg, #101314 0 20px, #182022 20px 22px), linear-gradient(135deg, #10d8c4, #ffffff);
}

.treatment-art {
  background: linear-gradient(135deg, #dce5e7, #687477 42%, #15191a 43%, #292f31);
}

.research-art {
  background: linear-gradient(135deg, #101314, #1f2729 45%, #10d8c4 46%, #75efe2);
}

.preview-grid h2 {
  margin: 10px 10px 3px;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.2;
}

.preview-grid p {
  margin: 0 10px 12px;
  color: var(--muted);
  font-size: 11px;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(52px, 8vw, 92px) 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 690px;
  margin-bottom: 28px;
}

.section-subheading {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.section-heading h2,
.workflow-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
}

.product-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, minmax(0, 0.9fr));
  gap: 14px;
}

.product-card,
.pricing-grid article,
.workflow-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.product-card {
  min-height: 310px;
  padding: 26px;
}

.product-card.featured {
  background: #0c1818;
  border-color: rgba(16, 216, 196, 0.58);
}

.clickable-card {
  cursor: pointer;
}

.clickable-card:hover {
  border-color: var(--accent);
}

.product-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.6;
  object-fit: contain;
  object-position: top center;
  margin: 0 0 20px;
  border: 1px solid rgba(16, 216, 196, 0.36);
  border-radius: 6px;
  background-color: #f7f8f8;
}

.product-card-art {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
}

.timestamp-note-art {
  background-image: url("assets/timestamp-note.png");
}

.treatment-builder-art {
  background-image: url("assets/treatment-builder.png");
}

.product-kicker {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 18px 0 0;
  color: #ffffff;
  font-size: 26px;
  line-height: 1.1;
}

.product-title-link {
  color: inherit;
}

.product-title-link:hover {
  color: var(--accent);
}

.product-card p,
.workflow-copy p,
.workflow-list p,
.pricing-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.product-card p {
  margin: 14px 0 24px;
}

.product-card a {
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.product-card a:hover {
  color: var(--accent);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.product-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 6px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.product-action.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #050505;
}

.product-action.primary:hover {
  background: var(--accent-hover);
  color: #050505;
}

.product-detail-main {
  width: min(1040px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(52px, 8vw, 92px) 0;
  font-family: Arial, Helvetica, sans-serif;
}

.product-detail-hero {
  display: grid;
  gap: 20px;
  padding-bottom: clamp(36px, 6vw, 64px);
}

.product-detail-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.product-detail-lede {
  max-width: 700px;
  margin: 0;
  color: var(--soft);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.5;
}

.product-detail-image {
  display: block;
  width: 100%;
  margin-top: 12px;
  border: 1px solid rgba(16, 216, 196, 0.38);
  border-radius: 8px;
  background: #f7f8f8;
}

.product-detail-section {
  padding: clamp(34px, 6vw, 58px) 0;
  border-top: 1px solid var(--line);
}

.product-detail-section h2 {
  max-width: 700px;
  margin: 0 0 18px;
  color: #ffffff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.product-detail-section p,
.product-detail-section li {
  max-width: 790px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.product-detail-section p {
  margin: 0 0 16px;
}

.product-detail-section strong {
  color: #ffffff;
}

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

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

.feature-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: clamp(20px, 3vw, 26px);
}

.feature-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
}

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

.search-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.search-examples span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(16, 216, 196, 0.42);
  border-radius: 6px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.detail-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 22px;
}

.detail-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.1;
}

.detail-card p {
  margin-bottom: 0;
}

.steps-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  max-width: none;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.video-link-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.video-link-panel a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid rgba(16, 216, 196, 0.42);
  border-radius: 6px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.workflow-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 32px;
  align-items: start;
}

.workflow-copy p {
  margin: 20px 0 0;
  max-width: 590px;
}

.workflow-list {
  display: grid;
  gap: 12px;
}

.workflow-list article {
  min-height: 142px;
  padding: 22px;
}

.workflow-list span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.workflow-list h3 {
  margin: 10px 0 0;
  color: #ffffff;
  font-size: 23px;
}

.workflow-list p {
  margin: 8px 0 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(980px, 100%);
}

.pricing-grid article {
  min-height: 470px;
  padding: clamp(24px, 3.2vw, 34px);
}

.pricing-grid .pricing-featured {
  border-color: rgba(16, 216, 196, 0.44);
  background: #071817;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #090909;
}

.pricing-card:last-child {
  border-right: 1px solid var(--line);
}

.pricing-card h3 {
  margin: 0;
  color: #ffffff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.4px;
  line-height: 1;
}

.pricing-badge {
  align-self: flex-start;
  margin-bottom: 28px;
  padding: 7px 13px;
  background: var(--accent);
  color: #050505;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.price-line {
  display: flex;
  align-items: baseline;
  margin-top: 24px;
  color: var(--muted);
}

.price-line span {
  font-size: 17px;
}

.price-line strong {
  color: #ffffff;
  font-size: clamp(42px, 5vw, 54px);
  font-weight: 400;
  line-height: 0.9;
}

.price-line em {
  color: var(--muted);
  font-size: 15px;
  font-style: normal;
}

.pricing-grid p {
  margin: 18px 0 0;
  max-width: 230px;
  color: #8d8d8d;
  font-size: 16px;
  line-height: 1.55;
}

.pricing-grid .pricing-save {
  margin-top: 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  color: #858585;
  font-size: 15px;
  line-height: 1.35;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 22px;
}

.pricing-card li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.pricing-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(210px, 100%);
  min-height: 46px;
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.2px;
}

.pricing-action:hover,
.pricing-action.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #050505;
}

.treatments-main {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(52px, 8vw, 92px) 0;
}

.treatments-hero {
  max-width: 780px;
  padding-bottom: clamp(36px, 6vw, 64px);
}

.treatments-hero h1 {
  margin: 0;
  color: #ffffff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

.treatments-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--soft);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.55;
}

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

.treatment-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.treatment-card h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.05;
}

.treatment-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.treatment-preview-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 24px;
  border: 1px solid rgba(16, 216, 196, 0.48);
  border-radius: 8px;
  background: #070909;
  object-fit: cover;
}

.treatment-preview {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 230px;
  margin-bottom: 24px;
  padding: 12px;
  border: 1px solid rgba(16, 216, 196, 0.35);
  border-radius: 8px;
  background: #070909;
}

.treatment-preview span {
  border-radius: 6px;
  background: #222b2d;
}

.treatment-preview span:first-child {
  grid-row: span 2;
}

.treatment-preview-one span:first-child {
  background: linear-gradient(135deg, #2c3436, #10d8c4);
}

.treatment-preview-two span:first-child {
  background: linear-gradient(135deg, #28343a, #dce5e7);
}

.treatment-preview-three span:first-child {
  background: linear-gradient(135deg, #10201f, #0fbfaf);
}

.treatment-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(220px, 100%);
  min-height: 46px;
  margin-top: auto;
  border: 1px solid rgba(16, 216, 196, 0.42);
  border-radius: 6px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.treatment-link:hover {
  background: var(--accent);
  color: #050505;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 24px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

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

.legal-main {
  width: min(880px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(52px, 8vw, 92px) 0;
}

.legal-page {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: clamp(26px, 5vw, 48px);
}

.legal-page h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
}

.legal-updated {
  margin: 14px 0 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.legal-page h2 {
  margin: 34px 0 0;
  color: #ffffff;
  font-size: 22px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.legal-page p {
  margin: 14px 0 0;
}

.legal-page ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.legal-page a {
  color: var(--accent);
  font-weight: 900;
}

.contact-panel {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
}

.contact-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-row strong {
  color: #ffffff;
  font-size: 16px;
}

.reset-main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(1180px, calc(100% - 36px));
  min-height: calc(100vh - 68px - 90px);
  margin: 0 auto;
  padding: clamp(52px, 8vw, 92px) 0;
}

.reset-card {
  width: min(420px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: clamp(26px, 5vw, 38px);
}

.reset-card h1 {
  margin: 0;
  color: #ffffff;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
}

.reset-message {
  margin: 12px 0 20px;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.55;
}

.reset-form {
  display: grid;
  gap: 14px;
}

.reset-form input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #cccccc;
  border-radius: 6px;
  background: #eeeeee;
  color: #111111;
  font-size: 16px;
}

.reset-form input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.reset-form button {
  width: 100%;
  min-height: 48px;
  padding: 12px;
  border: 0;
  border-radius: 6px;
  background: var(--accent);
  color: #000000;
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
}

.reset-form button:hover:not(:disabled) {
  background: var(--accent-hover);
}

.reset-form button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.reset-status {
  min-height: 21px;
  margin: 14px 0 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
}

.confirmed-main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(1180px, calc(100% - 36px));
  min-height: calc(100vh - 68px - 90px);
  margin: 0 auto;
  padding: clamp(52px, 8vw, 92px) 0;
}

.confirmed-card {
  width: min(760px, 100%);
  border: 1px solid rgba(16, 216, 196, 0.42);
  border-radius: 8px;
  background: #0c1818;
  padding: clamp(28px, 6vw, 58px);
}

.confirmed-logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  margin-bottom: clamp(34px, 6vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111111;
}

.confirmed-logo-title {
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1;
  text-align: center;
}

.confirmed-logo-subtitle {
  margin-top: 5px;
  color: var(--accent);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 2.5px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.confirmed-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.confirmed-card h1 {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.95;
}

.confirmed-copy {
  max-width: 640px;
  margin: 0 0 20px;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.65;
}

.confirmed-copy strong {
  color: #ffffff;
}

.confirmed-note {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 12px;
  padding: 0 16px;
  border: 1px solid rgba(16, 216, 196, 0.42);
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.subscription-main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(1180px, calc(100% - 36px));
  min-height: calc(100vh - 68px - 90px);
  margin: 0 auto;
  padding: clamp(52px, 8vw, 92px) 0;
}

.subscription-card {
  width: min(720px, 100%);
  border: 1px solid rgba(16, 216, 196, 0.42);
  border-radius: 8px;
  background: var(--surface);
  padding: clamp(28px, 6vw, 58px);
}

.subscription-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.subscription-card h1 {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.96;
}

.subscription-copy {
  max-width: 640px;
  margin: 0 0 18px;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.65;
}

.subscription-copy strong {
  color: #ffffff;
}

.subscription-instruction {
  margin-top: 34px;
  padding-left: 18px;
  border-left: 3px solid var(--accent);
  color: #ffffff;
  font-size: 17px;
  line-height: 1.6;
}

.subscription-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 30px;
  padding: 0 16px;
  border: 1px solid rgba(16, 216, 196, 0.45);
  border-radius: 999px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.cancel-main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(1180px, calc(100% - 36px));
  min-height: calc(100vh - 68px - 90px);
  margin: 0 auto;
  padding: clamp(52px, 8vw, 92px) 0;
}

.cancel-card {
  width: min(720px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: clamp(28px, 6vw, 58px);
}

.cancel-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.cancel-card h1 {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.96;
}

.cancel-copy {
  max-width: 640px;
  margin: 0 0 18px;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.65;
}

.cancel-note {
  margin-top: 34px;
  padding-left: 18px;
  border-left: 3px solid var(--accent);
  color: #ffffff;
  font-size: 17px;
  line-height: 1.6;
}

.cancel-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 30px;
  padding: 0 16px;
  border: 1px solid rgba(16, 216, 196, 0.45);
  border-radius: 999px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .workflow-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .product-grid,
  .pricing-grid,
  .treatment-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 14px;
    overflow: hidden;
  }

  .brand-lockup {
    gap: 10px;
  }

  .corner-logo {
    font-size: 12px;
  }

  .wordmark strong {
    font-size: 19px;
  }

  .wordmark > span {
    font-size: 7px;
    letter-spacing: 2px;
  }

  .site-nav {
    width: min(340px, 100%);
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
    font-size: 9px;
    letter-spacing: 0.8px;
    text-align: center;
  }

  .hero,
  .section {
    width: min(300px, calc(100% - 48px));
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-text {
    font-size: 16px;
  }

  .secondary-action,
  .primary-action {
    width: 100%;
    max-width: 100%;
  }

  .suite-preview {
    max-width: 300px;
    margin-inline: auto;
  }

  .preview-body {
    grid-template-columns: 1fr;
  }

  .preview-sidebar {
    display: none;
  }

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

  .site-footer,
  .contact-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .confirmed-logo-strip {
    min-height: 68px;
  }

  .confirmed-copy {
    font-size: 16px;
  }

  .subscription-copy,
  .subscription-instruction {
    font-size: 16px;
  }

  .cancel-copy,
  .cancel-note {
    font-size: 16px;
  }
}
