/* Super Simple Co marketing site styles.
   Warm, playful, merchant-friendly look. Static and dependency free;
   the two display fonts are self-hosted variable fonts in ../fonts. */

@font-face {
  font-family: "Baloo 2";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("../fonts/baloo2-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/nunito-latin.woff2") format("woff2");
}

:root {
  /* Ink */
  --ink-primary: #35284a;
  --ink-secondary: #5d5175;
  --ink-muted: #8a7fa0;
  --ink-inverse: #fff8ef;
  --ink-inverse-secondary: #d9cfe8;

  /* Surfaces */
  --surface: #fffaf2;
  --surface-white: #ffffff;
  --surface-plum: #35284a;

  /* Candy palette */
  --green: #00b478;
  --green-deep: #00875a;
  --green-soft: #d9f5e8;
  --coral: #ff6b5e;
  --coral-deep: #e04c40;
  --coral-soft: #ffe4e0;
  --yellow: #ffc94d;
  --yellow-deep: #e0a520;
  --yellow-soft: #fff1cf;
  --purple: #7c5cff;
  --purple-deep: #5f41d9;
  --purple-soft: #eae4ff;
  --teal: #2ec4b6;
  --teal-soft: #d8f4f1;
  --pink: #ff8fb1;
  --pink-soft: #ffe6ee;

  --border: #ece2d4;

  --radius-s: 14px;
  --radius-m: 22px;
  --radius-l: 32px;

  --shadow-card: 0 2px 4px rgba(53, 40, 74, 0.05), 0 12px 32px rgba(53, 40, 74, 0.08);

  --font-display: "Baloo 2", ui-rounded, "SF Pro Rounded", -apple-system, "Segoe UI", sans-serif;
  --font-body: "Nunito", ui-rounded, "SF Pro Rounded", -apple-system, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink-primary);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.15;
}

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

a {
  color: var(--green-deep);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 242, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--ink-primary);
  white-space: nowrap;
}

.logo:hover {
  text-decoration: none;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green) 0%, var(--teal) 120%);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  transform: rotate(-6deg);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo:hover .logo-mark {
  transform: rotate(6deg) scale(1.1);
}

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

.main-nav a {
  color: var(--ink-secondary);
  font-size: 15.5px;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--ink-primary);
  text-decoration: none;
}

.main-nav a.active {
  color: var(--green-deep);
}

.main-nav a:not(.btn) {
  position: relative;
}

.main-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  border-radius: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:not(.btn):hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.main-nav a.btn-primary,
.main-nav a.btn-primary:hover {
  color: #fff;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  background: var(--surface-white);
  border: 2px solid var(--ink-primary);
  border-radius: 999px;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-primary);
  cursor: pointer;
}

/* ---------- Buttons (candy style) ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease,
    color 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(2px);
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 5px 0 var(--green-deep);
}

.btn-primary:hover {
  box-shadow: 0 7px 0 var(--green-deep);
}

.btn-primary:active {
  box-shadow: 0 2px 0 var(--green-deep);
}

.btn-secondary {
  background: var(--surface-white);
  color: var(--ink-primary);
  box-shadow: 0 5px 0 rgba(53, 40, 74, 0.25);
  border: 2px solid var(--ink-primary);
}

.btn-secondary:hover {
  box-shadow: 0 7px 0 rgba(53, 40, 74, 0.25);
}

.btn-secondary:active {
  box-shadow: 0 2px 0 rgba(53, 40, 74, 0.25);
}

/* White-on-gradient buttons for the CTA card */
.btn-inverse {
  background: #fff;
  color: var(--green-deep);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.22);
}

.btn-inverse:hover {
  box-shadow: 0 7px 0 rgba(0, 0, 0, 0.22);
}

.btn-inverse:active {
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.22);
}

.btn-ghost-inverse {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.22);
}

.btn-ghost-inverse:hover {
  background: rgba(255, 255, 255, 0.26);
  box-shadow: 0 7px 0 rgba(0, 0, 0, 0.22);
}

.btn-ghost-inverse:active {
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.22);
}

.btn-large {
  padding: 16px 34px;
  font-size: 17px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 84px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(700px 420px at 88% 0%, rgba(124, 92, 255, 0.1), transparent 65%),
    radial-gradient(700px 460px at 0% 100%, rgba(255, 201, 77, 0.16), transparent 65%),
    var(--surface);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--surface-white);
  border: 2px solid var(--ink-primary);
  box-shadow: 0 3px 0 rgba(53, 40, 74, 0.2);
  font-size: 14px;
  font-weight: 800;
  color: var(--ink-primary);
  margin-bottom: 26px;
  /* rotate (not transform) so the entrance animation can't reset the tilt */
  rotate: -1.5deg;
}

.hero-badge .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.hero h1 {
  font-size: clamp(38px, 5.4vw, 58px);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

/* Marker-pen highlight */
.hero h1 .accent {
  position: relative;
  display: inline-block;
  color: var(--ink-primary);
  background-image: linear-gradient(100deg, rgba(255, 201, 77, 0.85), rgba(255, 143, 177, 0.75));
  background-size: 100% 44%;
  background-position: 0 78%;
  background-repeat: no-repeat;
  border-radius: 6px;
  padding: 0 6px;
  transform: rotate(-1deg);
}

.hero-sub {
  font-size: 18.5px;
  color: var(--ink-secondary);
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 22px;
}

.hero-note {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-muted);
}

/* Stack of playful offer cards in the hero */

.hero-visual {
  position: relative;
  padding: 12px 8px;
}

.box-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface-white);
  border: 2px solid var(--ink-primary);
  border-radius: var(--radius-m);
  box-shadow: 0 6px 0 rgba(53, 40, 74, 0.16);
  padding: 16px 18px;
  margin-bottom: 16px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.box-card {
  transition: rotate 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.box-card:hover {
  rotate: 0deg;
  transform: translateY(-4px) scale(1.02);
}

/* rotate (not transform) so the entrance animation can't reset the tilt */
.tilt-l {
  rotate: -1.6deg;
}

.tilt-r {
  rotate: 1.4deg;
}

.box-emoji {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 26px;
}

.box-emoji.mint {
  background: var(--green-soft);
}

.box-emoji.peach {
  background: var(--coral-soft);
}

.box-emoji.lemon {
  background: var(--yellow-soft);
}

.box-emoji.lilac {
  background: var(--purple-soft);
}

.box-card .row-main {
  min-width: 0;
  flex: 1;
}

.box-card .row-title {
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink-primary);
}

.box-card .row-sub {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-muted);
}

/* Floating emoji sprinkles */
.floaty {
  position: absolute;
  font-size: 30px;
  animation: bob 3.6s ease-in-out infinite alternate;
  pointer-events: none;
  filter: drop-shadow(0 4px 6px rgba(53, 40, 74, 0.18));
}

@keyframes bob {
  from {
    transform: translateY(0) rotate(-8deg);
  }
  to {
    transform: translateY(-16px) rotate(8deg);
  }
}

/* ---------- Pills ---------- */

.pill {
  flex-shrink: 0;
  font-size: 12.5px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.pill-green {
  background: var(--green-soft);
  color: var(--green-deep);
}

.pill-blue {
  background: var(--purple-soft);
  color: var(--purple-deep);
}

.pill-amber {
  background: var(--yellow-soft);
  color: var(--yellow-deep);
}

.pill-light-green {
  background: var(--green-soft);
  color: var(--green-deep);
}

.pill-light-blue {
  background: var(--purple-soft);
  color: var(--purple-deep);
}

.pill-light-gray {
  background: var(--pink-soft);
  color: #d14a77;
}

/* ---------- Stats (sticker tiles) ---------- */

.stats {
  padding: 8px 0 30px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 20px 0;
}

.stat-tile {
  text-align: center;
  padding: 26px 16px 24px;
  border-radius: var(--radius-m);
  border: 2px solid var(--ink-primary);
  box-shadow: 0 5px 0 rgba(53, 40, 74, 0.16);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.stats-grid .stat-tile:nth-child(1) {
  background: var(--green-soft);
  transform: rotate(-1.6deg);
}

.stats-grid .stat-tile:nth-child(2) {
  background: var(--yellow-soft);
  transform: rotate(1.2deg);
}

.stats-grid .stat-tile:nth-child(3) {
  background: var(--pink-soft);
  transform: rotate(-1deg);
}

.stats-grid .stat-tile:nth-child(4) {
  background: var(--purple-soft);
  transform: rotate(1.6deg);
}

.stats-grid .stat-tile:hover {
  transform: rotate(0deg) translateY(-4px);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ink-primary);
  font-variant-numeric: tabular-nums;
}

.stat-label {
  margin-top: 6px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink-secondary);
}

/* ---------- Capability ticker ---------- */

.marquee {
  overflow: hidden;
  padding: 10px 0 34px;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-half {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 14px;
}

.marquee .item {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink-secondary);
  white-space: nowrap;
  background: var(--surface-white);
  border: 2px solid var(--border);
  border-radius: 999px;
  padding: 7px 16px;
}

.marquee .sep {
  display: none;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Sections ---------- */

.section {
  padding: 84px 0;
}

/* Pastel island bands instead of full-bleed blocks */
.section-alt {
  background: var(--teal-soft);
  border-radius: var(--radius-l);
  max-width: 1240px;
  margin: 0 auto;
}

.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  background: var(--coral);
  border-radius: 999px;
  padding: 6px 16px;
  transform: rotate(-1.5deg);
  box-shadow: 0 3px 0 var(--coral-deep);
  margin-bottom: 18px;
}

.section-head h2 {
  font-size: clamp(30px, 3.8vw, 42px);
  font-weight: 800;
  margin-bottom: 14px;
}

.section-head p {
  font-size: 17.5px;
  color: var(--ink-secondary);
}

/* ---------- Feature cards ---------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.feature-card {
  border-radius: var(--radius-m);
  padding: 30px 28px;
  border: 2px solid var(--ink-primary);
  box-shadow: 0 6px 0 rgba(53, 40, 74, 0.16);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-grid .feature-card:nth-child(6n + 1) {
  background: var(--green-soft);
}

.feature-grid .feature-card:nth-child(6n + 2) {
  background: var(--yellow-soft);
}

.feature-grid .feature-card:nth-child(6n + 3) {
  background: var(--pink-soft);
}

.feature-grid .feature-card:nth-child(6n + 4) {
  background: var(--purple-soft);
}

.feature-grid .feature-card:nth-child(6n + 5) {
  background: var(--coral-soft);
}

.feature-grid .feature-card:nth-child(6n + 6) {
  background: var(--teal-soft);
}

.feature-card:hover {
  transform: translateY(-6px) rotate(-0.8deg);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 26px;
  background: var(--surface-white);
  border: 2px solid var(--ink-primary);
  box-shadow: 0 3px 0 rgba(53, 40, 74, 0.16);
  transform: rotate(-4deg);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover .feature-icon {
  transform: rotate(4deg) scale(1.1);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-secondary);
}

.feature-card ul {
  margin-top: 14px;
  padding-left: 0;
  list-style: none;
}

.feature-card li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-secondary);
  margin-bottom: 8px;
}

.feature-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--surface-white);
  border: 1.5px solid var(--ink-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300875a' stroke-width='3.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 9px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ---------- Split rows ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 44px 0;
}

.split + .split {
  border-top: 2px dashed rgba(53, 40, 74, 0.18);
}

.split h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 14px;
}

.split p {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-secondary);
  margin-bottom: 14px;
}

.split .checks {
  list-style: none;
  margin-top: 6px;
}

.split .checks li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-secondary);
}

.split .checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background-color: var(--surface-white);
  border: 2px solid var(--ink-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300875a' stroke-width='3.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}

.split-panel {
  background: var(--surface-white);
  border: 2px solid var(--ink-primary);
  border-radius: var(--radius-m);
  padding: 26px;
  box-shadow: 0 6px 0 rgba(53, 40, 74, 0.16);
  rotate: -1deg;
  transition: rotate 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.split:nth-child(even) .split-panel {
  rotate: 1deg;
}

.split .split-panel:hover {
  rotate: 0deg;
  transform: translateY(-4px);
}

.panel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 15px;
  border: 2px solid var(--border);
  border-radius: var(--radius-s);
  margin-bottom: 12px;
  background: var(--surface);
}

.panel-row:last-child {
  margin-bottom: 0;
}

.panel-row .row-title {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--ink-primary);
}

.panel-row .row-sub {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-muted);
}

/* ---------- Platform band (was the dark tech strip) ---------- */

.tech-strip {
  background: var(--purple-soft);
  border-radius: var(--radius-l);
  max-width: 1240px;
  margin: 0 auto;
}

.tech-strip .section-head p {
  color: var(--ink-secondary);
}

.tech-strip .eyebrow {
  background: var(--purple);
  box-shadow: 0 3px 0 var(--purple-deep);
  color: #fff;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tech-card {
  background: var(--surface-white);
  border: 2px solid var(--ink-primary);
  border-radius: var(--radius-m);
  padding: 26px;
  box-shadow: 0 5px 0 rgba(53, 40, 74, 0.16);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tech-card:hover {
  transform: translateY(-5px) rotate(0.8deg);
}

.tech-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tech-card h3 .tick {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  font-size: 14px;
}

.tech-card p {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-secondary);
}

/* ---------- Social proof ---------- */

.proof {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.proof .stars {
  color: var(--yellow);
  font-size: 34px;
  letter-spacing: 6px;
  margin-bottom: 18px;
  text-shadow: 0 3px 0 rgba(224, 165, 32, 0.45);
}

.proof blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 18px;
}

.proof .attribution {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-muted);
}

/* ---------- Pricing ---------- */

.pricing-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--surface-white);
  border: 2px solid var(--ink-primary);
  border-radius: var(--radius-l);
  box-shadow: 0 8px 0 rgba(53, 40, 74, 0.16);
  overflow: hidden;
}

.pricing-card-head {
  padding: 44px 40px 36px;
  text-align: center;
  background:
    radial-gradient(360px 200px at 12% 0%, rgba(255, 201, 77, 0.35), transparent 70%),
    radial-gradient(360px 200px at 88% 100%, rgba(124, 92, 255, 0.18), transparent 70%),
    var(--surface-white);
  border-bottom: 2px dashed rgba(53, 40, 74, 0.2);
}

.plan-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink-primary);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
  box-shadow: 0 3px 0 var(--yellow-deep);
  transform: rotate(-2deg);
  margin-bottom: 20px;
}

.price {
  font-family: var(--font-display);
  font-size: 76px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(115deg, var(--green) 5%, var(--purple) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price-sub {
  margin-top: 12px;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink-secondary);
}

.pricing-card-head .btn {
  margin-top: 28px;
}

.pricing-fineprint {
  margin-top: 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-muted);
}

.pricing-card-body {
  padding: 36px 40px 44px;
}

.included-title {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 22px;
  text-align: center;
}

.feature-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.feature-group h4 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 10px;
}

.feature-group ul {
  list-style: none;
}

.feature-group li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 9px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-secondary);
}

.feature-group li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background-color: var(--green-soft);
  border: 2px solid var(--ink-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300875a' stroke-width='3.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}

.pricing-faq {
  max-width: 760px;
  margin: 72px auto 0;
}

.pricing-faq h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 32px;
}

.faq-item {
  border: 2px solid var(--ink-primary);
  border-radius: var(--radius-m);
  padding: 24px 28px;
  margin-bottom: 16px;
  background: var(--surface-white);
  box-shadow: 0 5px 0 rgba(53, 40, 74, 0.14);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
  transform: translateY(-3px) rotate(-0.4deg);
}

.faq-item h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
}

.faq-item p {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-secondary);
}

/* ---------- Legal pages ---------- */

.legal {
  max-width: 760px;
  margin: 0 auto;
  background: var(--surface-white);
  border: 2px solid var(--ink-primary);
  border-radius: var(--radius-l);
  box-shadow: 0 6px 0 rgba(53, 40, 74, 0.14);
  padding: 44px 48px;
}

.legal p {
  font-size: 15.5px;
  color: var(--ink-secondary);
  margin-bottom: 16px;
}

.legal h3 {
  font-size: 21px;
  font-weight: 800;
  margin: 30px 0 12px;
}

.legal ul {
  list-style: none;
  margin: 0 0 16px;
}

.legal li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--ink-secondary);
}

.legal li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background-color: var(--green-soft);
  border: 2px solid var(--ink-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300875a' stroke-width='3.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}

.legal address {
  font-style: normal;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
  color: var(--ink-primary);
  background: var(--yellow-soft);
  border: 2px solid var(--ink-primary);
  border-radius: var(--radius-m);
  box-shadow: 0 4px 0 rgba(53, 40, 74, 0.14);
  padding: 20px 26px;
  margin-top: 8px;
  display: inline-block;
  rotate: -0.6deg;
}

@media (max-width: 640px) {
  .legal {
    padding: 28px 22px;
  }
}

/* ---------- CTA card ---------- */

.cta-band {
  padding: 40px 0 96px;
}

.cta-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
  background: linear-gradient(120deg, var(--green) 0%, var(--teal) 55%, var(--purple) 130%);
  border: 2px solid var(--ink-primary);
  border-radius: var(--radius-l);
  box-shadow: 0 8px 0 rgba(53, 40, 74, 0.2);
  padding: 72px 40px;
}

.cta-card > * {
  position: relative;
  z-index: 1;
}

.cta-card h2 {
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-card p {
  font-size: 17.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  max-width: 560px;
  margin: 0 auto 32px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* Confetti dots inside the CTA card */
.confetti {
  position: absolute;
  border-radius: 50%;
  opacity: 0.85;
  animation: bob 4s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--surface-plum);
  color: var(--ink-inverse-secondary);
  border-radius: var(--radius-l) var(--radius-l) 0 0;
  max-width: 1240px;
  margin: 0 auto;
  padding: 52px 0 36px;
  font-size: 14.5px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand .logo {
  color: var(--ink-inverse);
  margin-bottom: 10px;
}

.footer-brand p {
  max-width: 320px;
  font-weight: 600;
  color: var(--ink-inverse-secondary);
}

.footer-links {
  display: flex;
  gap: 56px;
}

.footer-links h4 {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--ink-inverse-secondary);
  font-weight: 600;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 13.5px;
  color: var(--ink-muted);
}

/* ---------- Motion ---------- */

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Load-time entrance animation (hero) */
.anim {
  opacity: 0;
  animation: fade-up 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--d, 0s);
}

/* Entrance variant that animates the translate property instead of
   transform, so tilted elements keep their rotation after landing */
@keyframes fade-up-t {
  from {
    opacity: 0;
    translate: 0 26px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}

.box-card.anim {
  animation-name: fade-up-t;
}

/* Scroll-triggered reveal. Hidden only when JS is available, so the
   site degrades gracefully without it. */
html.js [data-reveal] {
  opacity: 0;
  translate: 0 26px;
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    translate 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--d, 0s);
}

html.js [data-reveal].revealed {
  opacity: 1;
  translate: 0 0;
}

/* Soft pastel blobs on light bands */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.6;
  pointer-events: none;
  animation: drift 18s ease-in-out infinite alternate;
}

.orb-green {
  background: rgba(46, 196, 182, 0.4);
}

.orb-blue {
  background: rgba(124, 92, 255, 0.28);
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(60px, -40px, 0) scale(1.18);
  }
}

/* Reduced motion: everything lands instantly, nothing drifts */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }

  html.js [data-reveal] {
    opacity: 1;
    translate: 0 0;
  }

  .anim {
    opacity: 1;
    animation: none;
  }

  .marquee-track {
    animation: none;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 1260px) {
  .section-alt,
  .tech-strip,
  .site-footer {
    border-radius: 0;
  }
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

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

  .split-panel {
    order: 2;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
  }
}

@media (max-width: 640px) {
  .main-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    display: none;
    padding: 8px 24px 16px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 10px 0;
    width: 100%;
  }

  .main-nav a:not(.btn)::after {
    display: none;
  }

  .main-nav .btn {
    margin-top: 8px;
    width: 100%;
  }

  .nav-toggle {
    display: block;
  }

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

  .stat-value {
    font-size: 32px;
  }

  .floaty {
    display: none;
  }

  .pricing-card-head,
  .pricing-card-body {
    padding-left: 24px;
    padding-right: 24px;
  }

  .cta-card {
    padding: 56px 24px;
  }
}
