:root {
  --ocean-900: #05263a;
  --ocean-700: #0d4f6d;
  --ocean-500: #1986a7;
  --salt-100: #f5fbff;
  --sand-100: #fff7ec;
  --ink-900: #10212a;
  --ink-700: #35505d;
  --sun-400: #f6b955;
  --card: #ffffff;
  --radius: 18px;
  --shadow: 0 20px 50px rgba(5, 38, 58, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(circle at 15% 10%, rgba(25, 134, 167, 0.22), transparent 25%),
    radial-gradient(circle at 80% 20%, rgba(246, 185, 85, 0.22), transparent 30%),
    linear-gradient(175deg, var(--salt-100) 0%, #edf7fb 40%, #f9fdff 100%);
  line-height: 1.5;
}

h1,
h2,
h3 {
  font-family: "Archivo Black", sans-serif;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin: 0;
}

p {
  margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px clamp(1rem, 3vw, 2.25rem);
  background: rgba(5, 38, 58, 0.92);
  backdrop-filter: blur(8px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
}

.brand-logo {
  width: 104px;
  height: 104px;
  object-fit: contain;
}

.top-nav {
  display: flex;
  gap: 1.2rem;
}

.top-nav a {
  color: #dcf3ff;
  text-decoration: none;
  font-weight: 700;
}

.section-shell {
  width: min(1150px, 92%);
  margin: 2.4rem auto;
  padding: clamp(1.2rem, 2vw, 2rem);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(13, 79, 109, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
  background:
    linear-gradient(130deg, rgba(5, 38, 58, 0.94), rgba(13, 79, 109, 0.92)),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.05) 0,
      rgba(255, 255, 255, 0.05) 2px,
      transparent 2px,
      transparent 14px
    );
  color: #fff;
  overflow: hidden;
}

.eyebrow {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 0.7rem;
  color: #8dd9f3;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.9rem);
  margin-bottom: 0.7rem;
}

.subhead {
  font-size: clamp(1rem, 1.8vw, 1.24rem);
  max-width: 38ch;
  color: #dcf3ff;
  margin-bottom: 0.8rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  border: 2px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.btn-primary {
  background: var(--sun-400);
  color: #10212a;
}

.btn-secondary {
  border-color: #8dd9f3;
  color: #dff7ff;
}

.trust-signals {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 0.6rem;
}

.trust-signals li {
  background: rgba(141, 217, 243, 0.2);
  border: 1px solid rgba(141, 217, 243, 0.4);
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  font-weight: 700;
  text-align: center;
}

.hero-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.hero-mascot {
  position: relative;
  z-index: 2;
  width: min(430px, 92%);
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.35));
  animation: mascot-drift 3.6s ease-in-out infinite;
}

.nautical {
  position: absolute;
  border-radius: 999px;
}

.compass {
  right: 6%;
  top: 11%;
  width: 92px;
  height: 92px;
  border: 2px dashed rgba(255, 255, 255, 0.5);
}

.wave {
  left: -6%;
  bottom: 18%;
  width: 170px;
  height: 170px;
  border: 5px solid rgba(141, 217, 243, 0.35);
}

.rope {
  inset: auto auto 10% 15%;
  width: 200px;
  height: 200px;
  border: 10px double rgba(246, 185, 85, 0.35);
}

.pillar-grid,
.host-grid,
.plans-grid,
.steps,
.testimonial-grid {
  display: grid;
  gap: 1rem;
}

.pillar-grid,
.steps,
.testimonial-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card,
.plan,
.step,
.testimonial-grid blockquote,
.addons {
  background: var(--card);
  border: 1px solid rgba(13, 79, 109, 0.15);
  border-radius: 14px;
  padding: 1rem;
}

.card h3,
.step h3,
.plan h3 {
  margin-bottom: 0.5rem;
}

.host-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.badge {
  border: 2px solid rgba(25, 134, 167, 0.3);
  border-radius: 999px;
  padding: 0.6rem 0.9rem;
  font-weight: 700;
  background: #f0fbff;
}

.plans-grid {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  align-items: stretch;
}

.plan {
  display: flex;
  flex-direction: column;
}

.section-intro {
  margin: 0.25rem 0 1rem;
  color: var(--ink-700);
  max-width: 62ch;
}

.plan-label {
  margin: 0 0 0.35rem;
  color: var(--ocean-500);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-label {
  color: var(--sun-400);
}

.plan-intro {
  margin: 0 0 0.75rem;
  color: var(--ink-700);
  min-height: 3.2rem;
}

.price {
  font-size: 1.8rem;
  color: var(--ocean-700);
  margin: 0.2rem 0 0.7rem;
}

.plan ul {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
}

.plan-title {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.plan-title-icon {
  width: 1.2em;
  height: 1.2em;
  object-fit: contain;
}

.plan .btn {
  margin-top: auto;
}

.featured {
  border-width: 2px;
  border-color: var(--ocean-500);
  box-shadow: 0 14px 28px rgba(25, 134, 167, 0.2);
}

.addons {
  margin-top: 1rem;
  background: #fff5e5;
  border-color: rgba(246, 185, 85, 0.4);
}

.why-title {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.why-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.step-number {
  margin: 0;
  color: var(--ocean-500);
  font-weight: 800;
}

.guarantee {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}

.guarantee p {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.small-mascot {
  width: 195px;
  border-radius: 14px;
}

.testimonial-grid blockquote {
  margin: 0;
  font-weight: 500;
  color: var(--ink-700);
}

.testimonial-grid cite {
  display: block;
  margin-top: 0.8rem;
  font-style: normal;
  color: var(--ocean-700);
  font-weight: 800;
}

.about {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
}

.about p {
  max-width: 60ch;
}

.promise-title {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.paw-print {
  font-size: 0.95em;
  line-height: 1;
}

.about-mascot {
  width: min(330px, 60vw);
}

.final-cta {
  text-align: center;
}

.contact-form {
  width: min(640px, 100%);
  margin: 1rem auto 0;
  display: grid;
  gap: 0.55rem;
  text-align: left;
}

.contact-form label {
  font-weight: 700;
  color: var(--ocean-900);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(13, 79, 109, 0.28);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  color: var(--ink-900);
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(25, 134, 167, 0.35);
  outline-offset: 1px;
}

.contact-form button {
  justify-self: start;
  margin-top: 0.4rem;
}

.contact-form button:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.legal-page {
  max-width: 860px;
}

.legal-hero {
  background:
    linear-gradient(130deg, rgba(5, 38, 58, 0.95), rgba(13, 79, 109, 0.92)),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.05) 0,
      rgba(255, 255, 255, 0.05) 2px,
      transparent 2px,
      transparent 14px
    );
  color: #fff;
  border: 1px solid rgba(141, 217, 243, 0.2);
}

.back-link {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1rem;
  font-size: 0.92rem;
}

.legal-hero .eyebrow {
  color: #8dd9f3;
}

.legal-hero h1 {
  margin-bottom: 0.4rem;
}

.legal-hero .legal-meta {
  color: #dcf3ff;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.legal-page h2 {
  margin-top: 1.5rem;
  margin-bottom: 0.45rem;
  font-size: 1.15rem;
}

.legal-page a {
  color: #8dd9f3;
}

.legal-summary {
  margin-top: 1.8rem;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--sun-400);
  background: #fff8e8;
  border-radius: 12px;
  color: var(--ink-900);
}

.legal-summary h2 {
  color: var(--ocean-900);
}

.form-status {
  min-height: 1.2rem;
  margin: 0.15rem 0 0;
  font-weight: 700;
}

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

.form-status.status-error {
  color: #a4252c;
}

.hidden-botcheck {
  display: none;
}

.site-footer {
  margin-top: 2.8rem;
  padding: 2.2rem min(5vw, 2rem);
  background: #031924;
  color: #dbedf5;
  display: grid;
  gap: 1rem;
  grid-template-columns: 220px 1fr;
  align-items: center;
}

.footer-logo {
  width: 120px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.3rem;
}

.footer-links a {
  color: #c3e9ff;
  text-decoration: none;
  font-weight: 600;
}

@keyframes mascot-drift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

@media (max-width: 900px) {
  .hero,
  .about,
  .site-footer,
  .guarantee {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 300px;
  }

  .top-nav {
    gap: 0.8rem;
    font-size: 0.94rem;
  }
}

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

  .trust-signals {
    grid-template-columns: 1fr;
  }
}
