:root {
  --ink: #10241f;
  --ink-soft: #3a554d;
  --paper: #f3fff9;
  --paper-2: #e7fbf2;
  --surface: #ffffff;
  --coral: #ff6b3d;
  --coral-deep: #e24f22;
  --mint: #2ee6c5;
  --mint-deep: #0fb896;
  --sun: #ffe566;
  --navy-pop: #0b2e2a;
  --line: rgba(16, 36, 31, 0.12);
  --shadow: 0 18px 40px rgba(11, 46, 42, 0.12);
  --radius: 1.25rem;
  --radius-sm: 0.75rem;
  --font-display: "Syne", "Trebuchet MS", sans-serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(46, 230, 197, 0.28), transparent 34%),
    radial-gradient(circle at 88% 4%, rgba(255, 107, 61, 0.22), transparent 32%),
    radial-gradient(circle at 70% 70%, rgba(255, 229, 102, 0.2), transparent 40%),
    linear-gradient(160deg, #f7fff9 0%, #eefcf6 45%, #fff8f1 100%);
  background-attachment: fixed;
  line-height: 1.65;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: var(--coral-deep);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--navy-pop);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--navy-pop);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 1000;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

.inline-error {
  margin: 0;
  padding: 0.75rem 1rem;
  background: #ffe0d6;
  color: #7a1f00;
  border-bottom: 2px solid var(--coral);
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(243, 255, 249, 0.82);
  border-bottom: 2px solid rgba(11, 46, 42, 0.08);
}

.header-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  position: relative;
  z-index: 2;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--navy-pop);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.7rem;
  background:
    radial-gradient(circle at 70% 30%, var(--mint) 0 28%, transparent 29%),
    radial-gradient(circle at 35% 65%, var(--sun) 0 18%, transparent 19%),
    linear-gradient(135deg, var(--navy-pop), #164a43);
  box-shadow: 0 8px 18px rgba(11, 46, 42, 0.25);
  transform: rotate(-8deg);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.9rem;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
}

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

.nav-cta {
  background: var(--coral);
  color: #fff !important;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 8px 0 #c94a28;
}

.nav-cta:hover {
  transform: translateY(1px);
  box-shadow: 0 7px 0 #c94a28;
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--navy-pop);
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.8rem;
  cursor: pointer;
  position: relative;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  display: block;
  width: 1.1rem;
  height: 2px;
  background: #fff;
  margin: auto;
  position: absolute;
  left: 0.75rem;
  top: 1.25rem;
}

.nav-toggle-bar::before {
  top: -6px;
  left: 0;
}

.nav-toggle-bar::after {
  top: 6px;
  left: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.btn-primary:hover {
  color: #fff;
  transform: translateY(1px);
  box-shadow: 0 7px 0 var(--coral-deep);
}

.btn-secondary {
  background: var(--navy-pop);
  color: #fff;
  box-shadow: 0 8px 0 #061a17;
}

.btn-secondary:hover {
  color: #fff;
  transform: translateY(1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(16, 36, 31, 0.06);
  color: var(--ink);
}

.hero-home {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: end;
}

.brand-lockup {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--navy-pop);
  margin: 0 0 1rem;
  max-width: 11ch;
}

.brand-lockup span {
  display: inline-block;
  background: linear-gradient(90deg, var(--coral), #ff9a3d 45%, var(--mint-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-kicker {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  background: var(--sun);
  color: var(--navy-pop);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  transform: rotate(-2deg);
}

.hero-lead {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 38ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-visual {
  position: relative;
  min-height: 320px;
}

.hero-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 2rem 0.6rem 2rem 0.6rem;
  box-shadow: var(--shadow);
  border: 4px solid #fff;
  transform: rotate(2deg);
  animation: floaty 6s ease-in-out infinite;
}

.hero-shape {
  position: absolute;
  border-radius: 40% 60% 55% 45%;
  z-index: -1;
  animation: blob 9s ease-in-out infinite;
}

.hero-shape.s1 {
  width: 220px;
  height: 220px;
  background: rgba(46, 230, 197, 0.45);
  top: -20px;
  left: -30px;
}

.hero-shape.s2 {
  width: 160px;
  height: 160px;
  background: rgba(255, 107, 61, 0.35);
  right: -10px;
  bottom: 20px;
  animation-delay: -3s;
}

@keyframes floaty {
  0%,
  100% {
    transform: rotate(2deg) translateY(0);
  }
  50% {
    transform: rotate(1deg) translateY(-10px);
  }
}

@keyframes blob {
  0%,
  100% {
    border-radius: 40% 60% 55% 45%;
    transform: translate(0, 0);
  }
  50% {
    border-radius: 55% 45% 40% 60%;
    transform: translate(8px, -12px);
  }
}

.section {
  padding: 3.5rem 0;
  position: relative;
}

.section-head {
  margin-bottom: 1.75rem;
  max-width: 42rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.eyebrow {
  font-weight: 700;
  color: var(--mint-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  margin-bottom: 0.4rem;
}

.panel {
  background: rgba(255, 255, 255, 0.72);
  border: 2px solid rgba(11, 46, 42, 0.08);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.zigzag {
  display: grid;
  gap: 1.25rem;
}

.benefit-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 10px 0 rgba(11, 46, 42, 0.06);
  transition: transform 0.2s ease;
}

.benefit-row:hover {
  transform: translateX(6px);
}

.benefit-icon {
  width: 72px;
  height: 72px;
  border-radius: 1.2rem;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy-pop);
}

.benefit-icon.a {
  background: var(--mint);
  transform: rotate(-6deg);
}
.benefit-icon.b {
  background: var(--sun);
  transform: rotate(4deg);
}
.benefit-icon.c {
  background: #ffd0c2;
  transform: rotate(-3deg);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.proof-item {
  text-align: center;
  padding: 1.25rem 1rem;
  border-radius: var(--radius);
  background: var(--navy-pop);
  color: #fff;
  transform: rotate(-1deg);
}

.proof-item:nth-child(2) {
  background: var(--coral);
  transform: rotate(1.5deg);
}

.proof-item:nth-child(3) {
  background: #157a6e;
  transform: rotate(-0.5deg);
}

.proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 0.2rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(11, 46, 42, 0.08);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

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

.card img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}

.card-body {
  padding: 1.15rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.card-body h3 {
  font-size: 1.2rem;
  margin: 0;
}

.card-meta {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.tag {
  display: inline-block;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  width: fit-content;
}

.quote-stack {
  display: grid;
  gap: 1rem;
}

.quote {
  background: #fff;
  border-left: 6px solid var(--mint);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow);
}

.quote.alt {
  border-left-color: var(--coral);
}

.quote cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-weight: 700;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.cta-band {
  margin: 2rem 0 1rem;
  padding: 2rem;
  border-radius: 2rem;
  background:
    linear-gradient(120deg, rgba(255, 107, 61, 0.95), rgba(255, 154, 61, 0.9)),
    var(--coral);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -40px;
  bottom: -50px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 40% 60% 50% 50%;
  animation: blob 7s ease-in-out infinite;
}

.cta-band h2 {
  color: #fff;
  max-width: 18ch;
}

.cta-band p {
  max-width: 42ch;
  opacity: 0.95;
}

.cta-band .btn-secondary {
  background: #fff;
  color: var(--navy-pop);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.15);
}

.page-hero {
  padding: 3rem 0 1.5rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  max-width: 16ch;
}

.page-hero p {
  max-width: 52ch;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}

.media-frame {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
}

.media-frame img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}

.price-tier {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 2px solid rgba(11, 46, 42, 0.1);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.price-tier.featured {
  background: var(--navy-pop);
  color: #fff;
  transform: scale(1.03) rotate(0.8deg);
}

.price-tier.featured a {
  color: var(--sun);
}

.price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
}

.price span {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.8;
}

.price-tier ul {
  margin: 0;
  padding-left: 1.1rem;
  flex: 1;
}

.price-tier li {
  margin-bottom: 0.45rem;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-sm);
  border: 2px solid var(--line);
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

th,
td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  background: var(--paper-2);
  font-family: var(--font-display);
}

.faq details {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  margin-bottom: 0.7rem;
  border: 2px solid rgba(11, 46, 42, 0.08);
}

.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
}

.form {
  display: grid;
  gap: 1rem;
}

.field label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 2px solid rgba(11, 46, 42, 0.15);
  border-radius: 0.8rem;
  padding: 0.75rem 0.9rem;
  font: inherit;
  background: #fff;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(46, 230, 197, 0.45);
  border-color: var(--mint-deep);
}

.field-error {
  color: #a83312;
  font-size: 0.88rem;
  margin: 0.35rem 0 0;
}

.form-status {
  min-height: 1.4em;
  font-weight: 600;
}

.form-status.is-success {
  color: #0a7a55;
}

.form-status.is-error {
  color: #a83312;
}

.legal {
  max-width: 48rem;
}

.legal h2 {
  margin-top: 2rem;
  font-size: 1.45rem;
}

.module-list {
  display: grid;
  gap: 0.8rem;
}

.module-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  background: #fff;
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(11, 46, 42, 0.08);
}

.module-num {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.8rem;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  background: var(--sun);
}

.site-footer {
  margin-top: 3rem;
  background: var(--navy-pop);
  color: #e7fff8;
  position: relative;
}

.footer-wave {
  height: 28px;
  background:
    radial-gradient(circle at 10px 0, transparent 9px, var(--navy-pop) 10px) repeat-x;
  background-size: 28px 28px;
  transform: translateY(-27px);
}

.footer-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 1.5rem;
  padding: 0 0 2rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 0.6rem;
}

.footer-label {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 0 0.6rem;
  color: var(--sun);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-links a,
.footer-contact a {
  color: #dffcf3;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--sun);
}

.footer-contact p,
.footer-tag {
  color: #c9ebe0;
  font-size: 0.92rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  padding: 1rem 0 1.4rem;
  color: #9fd8c7;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  max-width: 720px;
  margin-inline: auto;
}

.cookie-banner-inner {
  background: #fff;
  border: 3px solid var(--navy-pop);
  border-radius: 1.2rem;
  padding: 1rem 1.15rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.85rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

.blog-prose {
  max-width: 44rem;
}

.blog-prose h2 {
  margin-top: 2rem;
}

.avatar-row {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.avatar-row img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: var(--shadow);
}

.case-study {
  background: linear-gradient(135deg, #fff 0%, #e9fff7 100%);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 2px solid rgba(11, 46, 42, 0.08);
  margin-bottom: 1.25rem;
}

.not-found {
  text-align: center;
  padding: 5rem 0;
}

.not-found h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  margin-bottom: 0.2rem;
}

.list-plain {
  padding-left: 1.1rem;
}

.list-plain li {
  margin-bottom: 0.45rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .cards,
  .pricing-grid,
  .proof-strip,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.4rem);
    right: 1rem;
    left: 1rem;
    background: #fff;
    border: 2px solid rgba(11, 46, 42, 0.1);
    border-radius: 1rem;
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-inner {
    position: relative;
  }

  .hero-visual img {
    height: 280px;
  }

  .price-tier.featured {
    transform: none;
  }
}
