:root {
  --ink: #101828;
  --ink-soft: #344054;
  --muted: #667085;
  --line: #d7dee8;
  --line-strong: #b9c4d2;
  --page: #f5f7fb;
  --surface: #ffffff;
  --tint: #edf8f7;
  --tint-strong: #d9f2ef;
  --cyan: #18b8b0;
  --cyan-dark: #087f7d;
  --pink: #fe2c55;
  --blue: #5261d7;
  --danger: #b42318;
  --success: #067647;
  --radius: 8px;
  --shadow: 0 14px 36px rgba(16, 24, 40, 0.08);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

button {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(24, 184, 176, 0.72);
  outline-offset: 3px;
}

::selection {
  background: var(--tint-strong);
  color: var(--ink);
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.narrow-container {
  max-width: 850px;
}

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

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

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid rgba(215, 222, 232, 0.88);
  background: rgba(245, 247, 251, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 74px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 7px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 3px 3px 0 var(--cyan), -3px -3px 0 var(--pink);
  color: #fff;
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
}

.brand-logo {
  object-fit: cover;
}

.brand-name {
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.brand-name span {
  color: var(--pink);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.primary-nav a,
.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.primary-nav a {
  position: relative;
}

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

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--ink);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-content: center;
  min-width: 128px;
  padding: 0 14px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  transition: background 180ms ease-out, transform 180ms ease-out;
}

.header-cta span {
  margin-left: 8px;
  color: var(--cyan);
  font-size: 18px;
  line-height: 1;
}

.header-cta:hover {
  background: #273346;
  transform: translateY(-1px);
}

.account-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 750;
}

.account-link:hover,
.account-link:focus-visible {
  color: var(--pink);
}

.hero-section {
  padding: 76px 0 64px;
  border-bottom: 1px solid var(--line);
  background: var(--page);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(270px, 0.55fr);
  align-items: end;
  gap: 64px;
}

.eyebrow,
.panel-label,
.price-kicker,
.footer-label,
.method-label,
.aside-label {
  margin: 0;
  color: var(--cyan-dark);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.3;
}

.hero-copy h1 {
  max-width: 780px;
  margin: 16px 0 20px;
  font-size: 62px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.04;
}

.hero-lede {
  max-width: 700px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.65;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.proof-dot,
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.proof-dot-cyan,
.live-dot {
  background: var(--cyan);
}

.proof-dot-pink {
  background: var(--pink);
}

.proof-dot-blue {
  background: var(--blue);
}

.hero-aside {
  padding: 20px 0 8px 28px;
  border-left: 2px solid var(--pink);
}

.hero-aside p {
  margin: 16px 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--cyan);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.text-link span {
  margin-left: 8px;
  color: var(--pink);
  font-size: 18px;
  text-decoration: none;
}

.section-light {
  background: var(--surface);
}

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

.tool-section,
.content-section,
.pricing-section,
.faq-section {
  padding: 90px 0;
}

.section-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 32px;
}

.section-intro h2,
.section-heading h2,
.closing-inner h2 {
  max-width: 680px;
  margin: 12px 0 0;
  font-size: 42px;
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1.12;
}

.section-summary {
  max-width: 400px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.tool-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.tool-controls,
.preview-panel {
  min-width: 0;
  padding: 30px;
}

.tool-controls {
  border-right: 1px solid var(--line);
}

.tool-panel-heading,
.preview-heading,
.label-row,
.field-meta,
.price-card-top,
.footer-bottom,
.closing-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.tool-panel-heading h3,
.preview-heading h3 {
  margin: 4px 0 0;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
}

.usage-pill,
.preview-state,
.price-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.usage-pill {
  border-color: rgba(24, 184, 176, 0.48);
  background: #effbfa;
  color: var(--cyan-dark);
}

.field-group {
  margin-top: 24px;
}

.label-row {
  align-items: baseline;
  margin-bottom: 8px;
}

label,
legend {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.field-hint,
.field-meta,
.field-meta span,
.preview-note,
.pricing-note {
  color: var(--muted);
  font-size: 12px;
}

textarea,
input[type="text"],
input:not([type]),
select {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  outline: 0;
  background: #fff;
  color: var(--ink);
  transition: border-color 180ms ease-out, box-shadow 180ms ease-out;
}

textarea {
  min-height: 114px;
  resize: vertical;
  line-height: 1.55;
}

textarea::placeholder,
input::placeholder {
  color: #98a2b3;
}

textarea:focus,
input:focus,
select:focus {
  border-color: var(--cyan-dark);
  box-shadow: 0 0 0 3px rgba(24, 184, 176, 0.14);
}

.field-meta {
  margin-top: 7px;
}

.quiet-button {
  min-height: 34px;
  padding: 2px 0;
  border: 0;
  background: transparent;
  color: var(--pink);
  font-size: 12px;
  font-weight: 850;
}

.quiet-button:hover {
  color: #b01437;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field-grid .field-group {
  min-width: 0;
}

.choice-group {
  min-width: 0;
  margin: 24px 0 0;
  padding: 0;
  border: 0;
}

.choice-group legend {
  margin-bottom: 9px;
}

.segmented-control {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f1f4f8;
}

.segment,
.style-option {
  min-height: 40px;
  border: 1px solid transparent;
  border-radius: 5px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  transition: background 180ms ease-out, color 180ms ease-out, border-color 180ms ease-out;
}

.segment:hover,
.segment.is-selected {
  border-color: var(--line-strong);
  background: #fff;
  color: var(--ink);
}

.style-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.style-option {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  padding: 0 10px;
  border-color: var(--line);
  background: #fff;
  text-align: left;
}

.style-option:hover,
.style-option.is-selected {
  border-color: var(--cyan-dark);
  box-shadow: 0 0 0 2px rgba(24, 184, 176, 0.12);
  color: var(--ink);
}

.style-swatch {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border: 1px solid rgba(16, 24, 40, 0.16);
  border-radius: 4px;
}

.swatch-classic {
  background: #eef1f4;
}

.swatch-night {
  background: #172033;
}

.swatch-neon {
  background: #d9d2ff;
}

.swatch-paper {
  background: #ffedc7;
}

.toggle-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.toggle-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 48px;
  padding: 9px 0;
  cursor: pointer;
}

.toggle-row > span:first-child {
  display: grid;
  gap: 1px;
}

.toggle-row strong {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.toggle-row small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.toggle-row input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.switch {
  position: relative;
  width: 42px;
  height: 24px;
  flex: 0 0 42px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #eef1f4;
  transition: background 180ms ease-out, border-color 180ms ease-out;
}

.switch::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(16, 24, 40, 0.22);
  content: "";
  transition: transform 180ms ease-out;
}

.toggle-row input:checked + .switch {
  border-color: var(--cyan-dark);
  background: var(--cyan-dark);
}

.toggle-row input:checked + .switch::after {
  transform: translateX(18px);
}

.toggle-row input:focus-visible + .switch {
  outline: 3px solid rgba(24, 184, 176, 0.72);
  outline-offset: 3px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  transition: background 180ms ease-out, border-color 180ms ease-out, color 180ms ease-out, transform 180ms ease-out, opacity 180ms ease-out;
}

.button:hover {
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}

.button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.52;
  transform: none;
}

.button-small {
  min-height: 40px;
  padding: 0 12px;
  font-size: 12px;
}

.button-icon {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-primary {
  border-color: var(--pink);
  background: var(--pink);
  color: #fff;
}

.button-primary:hover {
  border-color: #d71f46;
  background: #d71f46;
}

.button-secondary {
  border-color: var(--line-strong);
  background: #fff;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--ink);
  background: #f8fafc;
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.button-dark:hover {
  border-color: #273346;
  background: #273346;
}

.generate-button {
  width: 100%;
  margin-top: 24px;
}

.form-status {
  min-height: 25px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.form-status.is-error {
  color: var(--danger);
}

.form-status.is-success {
  color: var(--success);
}

.preview-panel {
  background: #f8fafc;
}

.preview-state {
  gap: 7px;
  border-color: rgba(24, 184, 176, 0.36);
  background: #effbfa;
  color: var(--cyan-dark);
}

.preview-art {
  position: relative;
  display: flex;
  min-height: 410px;
  flex-direction: column;
  justify-content: center;
  margin-top: 20px;
  padding: 42px 38px 30px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--ink);
  transition: background 180ms ease-out, color 180ms ease-out;
}

.preview-art::before,
.preview-art::after {
  position: absolute;
  width: 96px;
  height: 8px;
  content: "";
  opacity: 0.85;
}

.preview-art::before {
  top: 18px;
  left: 22px;
  background: var(--pink);
}

.preview-art::after {
  right: 22px;
  bottom: 18px;
  background: var(--cyan);
}

.theme-classic {
  background: #eef1f4;
}

.theme-night {
  background: #172033;
  color: #f8fafc;
}

.theme-neon {
  background: #eeeaff;
  color: #251a45;
}

.theme-paper {
  background: #ffefca;
  color: #302617;
}

.preview-canvas-note {
  position: absolute;
  top: 27px;
  right: 22px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
}

.theme-night .preview-canvas-note,
.theme-night .preview-disclaimer {
  color: #aab7ca;
}

.theme-neon .preview-canvas-note,
.theme-paper .preview-canvas-note {
  color: #71678d;
}

.mock-video-line {
  display: flex;
  gap: 7px;
  margin: 0 0 18px 55px;
}

.mock-video-line span {
  display: block;
  width: 40px;
  height: 5px;
  border-radius: 2px;
  background: #c2ccd5;
}

.mock-video-line span:nth-child(2) {
  width: 70px;
  background: rgba(254, 44, 85, 0.52);
}

.mock-video-line span:nth-child(3) {
  width: 22px;
  background: rgba(24, 184, 176, 0.72);
}

.theme-night .mock-video-line span {
  background: #43516b;
}

.theme-night .mock-video-line span:nth-child(2) {
  background: rgba(254, 44, 85, 0.84);
}

.theme-night .mock-video-line span:nth-child(3) {
  background: rgba(24, 184, 176, 0.88);
}

.comment-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 20px 20px 17px;
  border: 1px solid rgba(16, 24, 40, 0.1);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.1);
  color: var(--ink);
}

.theme-night .comment-card {
  border-color: #35435d;
  background: #202b40;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  color: #f8fafc;
}

.theme-neon .comment-card {
  border-color: #c7bdf1;
  box-shadow: 0 10px 24px rgba(67, 45, 128, 0.14);
}

.theme-paper .comment-card {
  border-color: #e5ce9d;
  box-shadow: 0 10px 24px rgba(86, 60, 14, 0.12);
  background: #fffaf0;
}

.comment-avatar {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}

.comment-content {
  min-width: 0;
  flex: 1;
}

.comment-author-line {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 850;
}

.theme-night .comment-author-line {
  color: #d6deea;
}

.verified-badge {
  display: inline-flex;
  width: 15px;
  height: 15px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  line-height: 1;
}

.comment-content p {
  margin: 5px 0 12px;
  overflow-wrap: anywhere;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.45;
}

.comment-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
  color: var(--muted);
  font-size: 11px;
}

.theme-night .comment-meta {
  color: #aab7ca;
}

.like-button {
  min-width: 44px;
  min-height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 11px;
}

.like-button:hover {
  color: var(--pink);
}

.reply-line {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 13px 0 0 57px;
  color: var(--muted);
  font-size: 11px;
}

.theme-night .reply-line {
  color: #aab7ca;
}

.reply-connector {
  display: block;
  width: 20px;
  height: 14px;
  border-bottom: 1px solid currentColor;
  border-left: 1px solid currentColor;
  border-bottom-left-radius: 5px;
}

.is-hidden {
  display: none !important;
}

.preview-disclaimer {
  margin-top: 22px;
  color: #7a8797;
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.preview-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.preview-note {
  margin: 10px 0 0;
  line-height: 1.5;
}

.section-heading > p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

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

.step-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.step-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.step-number,
.item-index {
  color: var(--pink);
  font-size: 12px;
  font-weight: 850;
}

.step-list h3,
.use-case-item h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
}

.step-list p,
.use-case-item p {
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 42px;
}

.use-case-item {
  padding: 23px 0 0;
  border-top: 2px solid var(--cyan);
}

.use-case-item h3 {
  margin-top: 14px;
}

.split-content {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: start;
  gap: 80px;
}

.split-content-reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.split-content-reverse .section-heading {
  order: 2;
}

.detail-table-wrap {
  overflow-x: auto;
  border-top: 2px solid var(--ink);
}

.detail-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.detail-table caption {
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  position: absolute;
  width: 1px;
  height: 1px;
  white-space: nowrap;
}

.detail-table th,
.detail-table td {
  padding: 14px 10px 14px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.detail-table th {
  width: 34%;
  color: var(--ink-soft);
  font-weight: 800;
}

.detail-table td {
  color: var(--muted);
}

.method-note {
  padding: 26px;
  border: 1px solid #b8ddda;
  border-radius: var(--radius);
  background: #f8fffe;
}

.method-rule {
  width: 100%;
  height: 7px;
  margin-bottom: 26px;
  background: var(--cyan);
}

.method-value {
  margin: 12px 0 8px;
  color: var(--ink);
  font-size: 29px;
  font-weight: 820;
  line-height: 1.15;
}

.method-copy {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.pricing-section {
  background: var(--ink);
  color: #fff;
}

.pricing-section .eyebrow {
  color: var(--cyan);
}

.pricing-heading {
  max-width: 770px;
}

.pricing-heading > p:not(.eyebrow) {
  color: #b9c5d5;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.pricing-grid-packs {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 20px;
}

.pricing-group-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
}

.pricing-group-heading .eyebrow {
  flex-shrink: 0;
  margin: 0;
}

.pricing-group-heading > p:last-child {
  max-width: 560px;
  margin: 0;
  color: #b9c5d5;
  font-size: 13px;
}

.price-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 25px;
  border: 1px solid #3b495e;
  border-radius: var(--radius);
  background: #172033;
}

.price-card-featured {
  border-color: var(--pink);
  background: #fff;
  color: var(--ink);
}

.price-card-top {
  align-items: flex-start;
}

.price-kicker {
  color: var(--cyan);
}

.price-card-featured .price-kicker {
  color: var(--pink);
}

.price-tag {
  border-color: #46546a;
  color: #aab7ca;
}

.price-tag-dark {
  border-color: rgba(254, 44, 85, 0.4);
  color: var(--pink);
}

.price-card h3 {
  margin: 22px 0 8px;
  font-size: 24px;
  line-height: 1.2;
}

.price-value {
  color: #fff;
  font-size: 32px;
  font-weight: 850;
  line-height: 1.2;
}

.price-card-featured .price-value {
  color: var(--ink);
}

.price-value span {
  color: #aab7ca;
  font-size: 12px;
  font-weight: 700;
}

.price-card-featured .price-value span {
  color: var(--muted);
}

.price-card > p {
  min-height: 72px;
  margin: 17px 0 0;
  color: #b9c5d5;
  font-size: 13px;
  line-height: 1.7;
}

.price-card-featured > p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
  color: #d7e0eb;
  font-size: 13px;
}

.price-card-featured .check-list {
  color: var(--ink-soft);
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 14px;
  height: 14px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  color: var(--cyan);
  content: "✓";
  font-size: 10px;
  font-weight: 900;
  line-height: 12px;
  text-align: center;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing-note {
  max-width: 680px;
  margin: 22px 0 0;
  color: #98a6b8;
  line-height: 1.6;
}

.pricing-note.is-error {
  color: #ffb4bd;
}

.pricing-free-note {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid #3b495e;
  color: #d7e0eb;
  font-size: 13px;
}

.pricing-free-note strong {
  color: #fff;
}

.pricing-free-note span {
  color: #98a6b8;
}

.pricing-free-note .text-link {
  margin-left: auto;
  color: var(--cyan);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.35fr);
  align-items: start;
  gap: 80px;
}

.faq-heading {
  position: sticky;
  top: 110px;
}

.faq-list {
  border-top: 2px solid var(--ink);
}

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

.faq-list summary {
  position: relative;
  min-height: 64px;
  padding: 19px 36px 19px 0;
  cursor: pointer;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 17px;
  right: 2px;
  color: var(--pink);
  content: "+";
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
}

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

.faq-list details p {
  max-width: 680px;
  margin: -3px 0 21px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.closing-section {
  padding: 66px 0;
  background: var(--tint-strong);
}

.closing-inner {
  align-items: center;
}

.closing-inner h2 {
  max-width: 560px;
  margin-top: 10px;
  font-size: 38px;
}

.site-footer {
  padding: 52px 0 24px;
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px 140px;
  gap: 40px;
}

.footer-brand {
  width: fit-content;
}

.footer-copy {
  max-width: 300px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 8px;
  font-size: 13px;
}

.footer-label {
  margin-bottom: 5px;
  color: var(--ink);
}

.footer-links a {
  width: fit-content;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--pink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  align-items: flex-start;
  margin-top: 45px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.legal-section {
  padding: 84px 0 110px;
  background: #fff;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  align-items: start;
  gap: 86px;
}

.legal-aside {
  position: sticky;
  top: 110px;
}

.legal-aside h1 {
  margin: 14px 0 16px;
  font-size: 44px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.08;
}

.legal-aside > p:not(.eyebrow) {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.legal-nav {
  display: grid;
  gap: 3px;
  margin-top: 38px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.legal-nav a {
  display: flex;
  align-items: center;
  min-height: 40px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.legal-nav a:hover,
.legal-nav a.is-current {
  color: var(--pink);
}

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

.legal-meta {
  margin: 0 0 34px;
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 800;
}

.legal-copy h2 {
  margin: 40px 0 12px;
  font-size: 25px;
  font-weight: 820;
  line-height: 1.25;
}

.legal-copy h2:first-of-type {
  margin-top: 0;
}

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

.legal-copy p {
  margin: 0 0 18px;
}

.legal-copy strong {
  color: var(--ink-soft);
}

.inline-link {
  color: var(--pink);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-callout {
  display: grid;
  gap: 5px;
  margin-top: 42px;
  padding: 22px;
  border-left: 4px solid var(--cyan);
  background: var(--tint);
}

.legal-callout strong {
  color: var(--ink);
  font-size: 16px;
}

.legal-callout span:not(.text-link span) {
  color: var(--muted);
  font-size: 13px;
}

.legal-callout .text-link {
  width: fit-content;
  margin-top: 6px;
}

.account-hero {
  padding: 76px 0 70px;
  background: var(--ink);
  color: #fff;
}

.account-hero .eyebrow {
  color: var(--cyan);
}

.account-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.06;
}

.account-hero p:last-child {
  max-width: 650px;
  margin: 20px 0 0;
  color: #b9c5d5;
  font-size: 17px;
}

.account-section {
  padding: 64px 0 100px;
}

.account-root {
  max-width: 1000px;
}

.account-toolbar,
.account-panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.account-toolbar {
  margin-bottom: 30px;
}

.account-toolbar h2,
.account-panel-heading h2 {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.2;
}

.account-kicker {
  margin: 0;
  color: var(--cyan-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .1em;
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.account-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

.account-summary-card {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.account-summary-card span {
  color: var(--muted);
  font-size: 13px;
}

.account-summary-card strong {
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
}

.account-panel {
  margin-top: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.account-table-wrap {
  overflow-x: auto;
  margin-top: 20px;
}

.account-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 13px;
}

.account-table th {
  padding: 11px 12px;
  border-bottom: 2px solid var(--ink);
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: .06em;
  text-align: left;
  text-transform: uppercase;
}

.account-table td {
  padding: 15px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  vertical-align: middle;
}

.account-table td:first-child {
  color: var(--ink);
}

.account-table td strong,
.account-table td span:not(.status-pill) {
  display: block;
}

.account-table td span:not(.status-pill) {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  text-transform: capitalize;
}

.status-paid,
.status-active {
  border-color: #9bd6bc;
  background: #effaf4;
  color: var(--success);
}

.status-pending,
.status-canceling,
.status-past_due {
  border-color: #f0cf8a;
  background: #fff8e8;
  color: #8a5a00;
}

.status-failed,
.status-canceled,
.status-cancelled {
  border-color: #edb5b0;
  background: #fff4f2;
  color: var(--danger);
}

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--pink);
  font-size: 12px;
  font-weight: 800;
}

.text-action:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.text-action:disabled {
  cursor: not-allowed;
  color: var(--muted);
}

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

.account-muted a {
  color: var(--pink);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.account-empty,
.account-loading {
  text-align: center;
}

.account-empty h2 {
  margin: 14px 0 8px;
  color: var(--ink);
  font-size: 25px;
}

.account-empty p,
.account-loading p {
  max-width: 520px;
  margin: 0 auto 20px;
  color: var(--muted);
}

.account-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--tint-strong);
  font-size: 19px;
}

.billing-message,
.inline-error {
  margin: 18px 0 0;
  padding: 12px 14px;
  border-left: 4px solid var(--cyan);
  background: var(--tint);
  color: var(--ink-soft);
  font-size: 13px;
}

.inline-error {
  border-left-color: var(--danger);
  background: #fff4f2;
  color: var(--danger);
}

.auth-callback-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background: var(--page);
}

.auth-callback-shell {
  width: min(520px, 100%);
}

.auth-brand {
  margin: 0 auto 22px;
}

.auth-callback {
  margin-top: 0;
}

.auth-callback p {
  margin: 0 0 18px;
  color: var(--muted);
}

@media (max-width: 960px) {
  .hero-grid,
  .split-content,
  .split-content-reverse,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    align-items: start;
    gap: 36px;
  }

  .hero-aside {
    max-width: 600px;
  }

  .tool-shell {
    grid-template-columns: 1fr;
  }

  .tool-controls {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .split-content-reverse .section-heading {
    order: initial;
  }

  .method-note {
    max-width: 600px;
  }

  .faq-heading {
    position: static;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) 140px 140px;
  }

  .pricing-group-heading {
    display: block;
  }

  .pricing-group-heading > p:last-child {
    margin-top: 10px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 32px, 560px);
  }

  .header-inner {
    min-height: 66px;
    gap: 12px;
  }

  .primary-nav {
    display: none;
  }

  .header-cta {
    min-width: 108px;
    margin-left: auto;
    font-size: 12px;
  }

  .account-link {
    display: none;
  }

  .hero-section {
    padding: 54px 0 46px;
  }

  .hero-copy h1 {
    font-size: 43px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-aside {
    padding-left: 18px;
  }

  .tool-section,
  .content-section,
  .pricing-section,
  .faq-section {
    padding: 64px 0;
  }

  .section-intro h2,
  .section-heading h2 {
    font-size: 32px;
  }

  .section-intro,
  .closing-inner {
    display: block;
  }

  .section-summary {
    margin-top: 16px;
  }

  .tool-controls,
  .preview-panel {
    padding: 20px;
  }

  .preview-art {
    min-height: 350px;
    padding: 42px 18px 26px;
  }

  .comment-card {
    gap: 10px;
    padding: 16px 14px 14px;
  }

  .comment-avatar {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    font-size: 11px;
  }

  .comment-content p {
    font-size: 14px;
  }

  .reply-line {
    margin-left: 46px;
  }

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

  .use-case-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card > p {
    min-height: 0;
  }

  .split-content {
    gap: 36px;
  }

  .step-list li {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .closing-inner .button {
    width: 100%;
    margin-top: 24px;
  }

  .pricing-free-note {
    display: grid;
  }

  .pricing-free-note .text-link {
    margin-left: 0;
  }

  .account-section {
    padding: 48px 0 72px;
  }

  .account-hero {
    padding: 56px 0 50px;
  }

  .account-hero h1 {
    font-size: 42px;
  }

  .account-toolbar,
  .account-panel-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-summary-grid {
    grid-template-columns: 1fr;
  }

  .account-panel {
    padding: 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
  }

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
    gap: 7px;
  }

  .legal-section {
    padding: 58px 0 72px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .legal-aside {
    position: static;
  }

  .legal-aside h1 {
    font-size: 38px;
  }
}

@media (max-width: 420px) {
  .brand-name {
    font-size: 13px;
  }

  .header-cta {
    min-width: 92px;
    padding: 0 9px;
  }

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

  .segmented-control {
    grid-template-columns: 1fr 1fr;
  }

  .closing-inner h2 {
    font-size: 30px;
  }

  .preview-canvas-note {
    top: 28px;
    left: 22px;
    right: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
