:root {
  --bg-base: #f7efe2;
  --bg-secondary: #f6dac0;
  --ink-1: #1a1a1f;
  --ink-2: #3a3a44;
  --accent: #eb5e28;
  --accent-2: #0b4f6c;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-border: rgba(255, 255, 255, 0.9);
  --shadow: 0 20px 50px rgba(12, 14, 20, 0.15);
  --radius-xl: 24px;
  --radius-lg: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Sora", sans-serif;
  color: var(--ink-1);
  background:
    radial-gradient(circle at 10% 15%, #ffd1a7 0%, transparent 30%),
    radial-gradient(circle at 84% 24%, #c8f2ff 0%, transparent 34%),
    linear-gradient(130deg, var(--bg-base), var(--bg-secondary));
  min-height: 100%;
}

body {
  padding: 1.2rem;
  overflow-x: hidden;
}

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
}

iframe {
  display: block;
  border: 0;
}

table {
  max-width: 100%;
}

p,
li,
a,
h1,
h2,
h3 {
  overflow-wrap: anywhere;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.17;
  background-image: radial-gradient(#ffffff 0.6px, transparent 0.6px);
  background-size: 3px 3px;
}

.site-header,
main,
.site-footer {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  background: #969ca6 !important;
  backdrop-filter: none;
  border: 1px solid #7b818a !important;
  box-shadow: var(--shadow);
}

.brand {
  text-decoration: none;
  color: var(--ink-1);
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 12px;
}

.brand-word {
  line-height: 1;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.top-nav a {
  text-decoration: none;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-right: -0.5rem;
}

.menu-toggle span {
  width: 24px;
  height: 2.5px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

main {
  margin-top: 2rem;
  display: grid;
  gap: 3.4rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 1.5rem;
}

.hero-copy,
.hero-card,
.section,
.site-footer {
  border-radius: var(--radius-xl);
  border: 1px solid var(--surface-border);
  background: var(--surface);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 2.4rem;
}

.hero-card {
  padding: 2rem;
  align-self: start;
}

.kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.77rem;
  color: var(--accent-2);
  font-weight: 700;
}

h1,
h2,
h3 {
  margin-top: 0.5rem;
  margin-bottom: 0.8rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.1rem, 5.2vw, 3.8rem);
}

h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  color: var(--ink-2);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-solid {
  background: linear-gradient(140deg, var(--accent), #ff9f5c);
  color: #ffffff;
  box-shadow: 0 12px 20px rgba(235, 94, 40, 0.3);
}

.btn-outline {
  color: var(--ink-1);
  border: 1px solid rgba(26, 26, 31, 0.2);
  background: rgba(255, 255, 255, 0.66);
}

.btn-ghost {
  color: var(--accent-2);
  border: 1px dashed rgba(11, 79, 108, 0.35);
}

.btn-wide {
  width: 100%;
  margin-top: 0.9rem;
}

.hero-metrics {
  margin-top: 1.8rem;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero-metrics li {
  padding: 0.8rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.hero-metrics strong {
  display: block;
  font-size: 1.05rem;
}

.hero-metrics span {
  font-size: 0.8rem;
  color: var(--ink-2);
}

.mono {
  font-family: "IBM Plex Mono", monospace;
  margin: 0;
  color: var(--accent-2);
  font-size: 0.78rem;
}

.timeline {
  margin-top: 1rem;
  display: grid;
  gap: 0.4rem;
}

.timeline-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
}

.section {
  padding: 2rem;
}

.section-heading {
  max-width: 780px;
}

.feature-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.feature-card {
  border-radius: var(--radius-lg);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.77);
  border: 1px solid rgba(255, 255, 255, 0.88);
}

.pricing-layout {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature-compare-wrap {
  margin-top: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.78);
  padding: 1rem;
}

.feature-compare-wrap h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.feature-compare {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.feature-compare th,
.feature-compare td {
  text-align: left;
  padding: 0.7rem 0.65rem;
  border-bottom: 1px solid rgba(26, 26, 31, 0.12);
}

.feature-compare th {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-2);
}

.feature-compare td:nth-child(2),
.feature-compare td:nth-child(3),
.feature-compare th:nth-child(2),
.feature-compare th:nth-child(3) {
  width: 120px;
  text-align: center;
}

.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
}

.status.yes {
  color: #0f7a2a;
  background: rgba(78, 218, 109, 0.2);
}

.status.no {
  color: #b5192e;
  background: rgba(255, 110, 125, 0.2);
}

.plan {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.75);
}

.plan-standard {
  background: rgba(164, 170, 180, 0.7) !important;
  border-color: rgba(123, 129, 138, 0.5) !important;
}

.plan-logo-wrap {
  margin: 0.45rem 0 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-logo-large {
  width: 200px;
  height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.plan-pro {
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 159, 92, 0.24), transparent 40%),
    rgba(255, 255, 255, 0.8);
}

.buy-pro-cta {
  position: relative;
  z-index: 5;
  pointer-events: auto;
}

.price {
  margin: 0 0 0.8rem 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink-1);
}

ul {
  padding-left: 1.15rem;
  margin: 0;
}

li {
  margin-bottom: 0.45rem;
  color: var(--ink-2);
}

.faq-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.65rem;
}

details {
  border-radius: 14px;
  border: 1px solid rgba(26, 26, 31, 0.15);
  background: rgba(255, 255, 255, 0.74);
  padding: 0.65rem 0.8rem;
}

summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink-1);
}

summary::marker {
  color: var(--accent);
}

.cta {
  text-align: center;
}

.contact-form {
  margin-top: 1rem;
  text-align: left;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.78);
  padding: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.38rem;
  margin-bottom: 0.8rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-1);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(26, 26, 31, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink-1);
  font: inherit;
  padding: 0.62rem 0.72rem;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(11, 79, 108, 0.2);
  border-color: rgba(11, 79, 108, 0.45);
}

.contact-form .hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.turnstile-wrap {
  margin: 0.2rem 0 0.85rem;
  display: flex;
  justify-content: flex-start;
}

.form-actions {
  margin-top: 0.2rem;
}

.license-key-wrap {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(26, 26, 31, 0.12);
}

.license-key-wrap textarea {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.85rem;
  line-height: 1.45;
}

.contact-status {
  margin-top: 0.35rem;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.6);
}

.contact-status.is-sending {
  color: #0b4f6c;
  border-color: rgba(11, 79, 108, 0.25);
  background: rgba(200, 242, 255, 0.45);
}

.contact-status.is-success {
  color: #0f7a2a;
  border-color: rgba(78, 218, 109, 0.35);
  background: rgba(78, 218, 109, 0.16);
}

.contact-status.is-error {
  color: #b5192e;
  border-color: rgba(255, 110, 125, 0.35);
  background: rgba(255, 110, 125, 0.16);
}

.legal-links a {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 600;
}

.legal-links a:hover {
  text-decoration: underline;
}

.legal-page {
  text-align: left;
}

.tracking-list {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
}

.tracking-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--accent-2);
}

.tracking-item pre {
  overflow: auto;
  padding: 0.9rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  white-space: pre-wrap;
  word-break: break-word;
}

.tracking-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.tracking-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(11, 79, 108, 0.12);
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 700;
}

.legal-list {
  margin-top: 0.9rem;
  padding-left: 1.25rem;
}

.legal-list li {
  margin-bottom: 1rem;
}

.legal-list h3 {
  margin: 0 0 0.35rem 0;
  font-size: 1.03rem;
}

.legal-list p {
  margin: 0 0 0.5rem 0;
}

.site-footer {
  margin-top: 1.7rem;
  margin-bottom: 1rem;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini {
  margin: 0;
  font-size: 0.82rem;
  color: var(--ink-2);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  animation: cardFloatIn 0.8s ease 0.15s both;
}

@keyframes cardFloatIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  .top-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #7b818a;
    border: 1px solid #6b7178;
    border-top: none;
    border-radius: 0 0 18px 18px;
    padding: 1rem 0;
    margin-top: 0.5rem;
    box-shadow: var(--shadow);
    gap: 0;
    min-width: 240px;
    z-index: 40;
  }

  .top-nav.active {
    display: flex;
  }

  .top-nav a {
    padding: 0.8rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s ease;
  }

  .top-nav a:last-child {
    border-bottom: none;
  }

  .top-nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .pricing-layout,
  .hero-metrics {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  body {
    padding: 0.8rem;
  }

  .site-header {
    border-radius: 18px;
    flex-wrap: wrap;
    gap: 0.55rem;
  }

  .brand {
    min-width: 0;
  }

  .brand-word {
    font-size: 0.95rem;
  }

  .site-header > .btn.btn-outline {
    margin-left: auto;
    padding: 0.6rem 0.9rem;
    font-size: 0.86rem;
    white-space: nowrap;
  }

  .section {
    overflow-x: hidden;
  }

  .feature-compare-wrap {
    overflow-x: visible;
    padding: 0.65rem;
  }

  .feature-compare {
    table-layout: fixed;
  }

  .feature-compare th,
  .feature-compare td {
    padding: 0.5rem 0.32rem;
    font-size: 0.8rem;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .feature-compare th:nth-child(1),
  .feature-compare td:nth-child(1) {
    width: 56%;
  }

  .feature-compare td:nth-child(2),
  .feature-compare td:nth-child(3),
  .feature-compare th:nth-child(2),
  .feature-compare th:nth-child(3) {
    width: 22%;
  }

  .status {
    width: 22px;
    height: 22px;
    font-size: 0.84rem;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .plan-logo-large {
    width: 140px;
    height: 140px;
  }

  .hero-copy,
  .hero-card,
  .section {
    padding: 1.15rem;
  }

  .feature-grid,
  .pricing-layout,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .feature-compare th,
  .feature-compare td {
    padding: 0.62rem 0.45rem;
    font-size: 0.9rem;
  }

  .feature-compare td:nth-child(2),
  .feature-compare td:nth-child(3),
  .feature-compare th:nth-child(2),
  .feature-compare th:nth-child(3) {
    width: 22%;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }
}

@media (max-width: 420px) {
  .feature-compare-wrap {
    padding: 0.5rem;
  }

  .feature-compare th,
  .feature-compare td {
    padding: 0.42rem 0.24rem;
    font-size: 0.75rem;
  }

  .feature-compare th:nth-child(1),
  .feature-compare td:nth-child(1) {
    width: 54%;
  }

  .feature-compare td:nth-child(2),
  .feature-compare td:nth-child(3),
  .feature-compare th:nth-child(2),
  .feature-compare th:nth-child(3) {
    width: 23%;
  }

  .status {
    width: 20px;
    height: 20px;
    font-size: 0.78rem;
  }
}
