@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@600;700&family=Nunito+Sans:wght@400;600;700;800&display=swap");

:root {
  --wakey-bg: #f8efe7;
  --wakey-bg-soft: #fff8f1;
  --wakey-paper: rgba(255, 250, 246, 0.9);
  --wakey-paper-strong: #fffaf5;
  --wakey-ink: #6a3a24;
  --wakey-ink-strong: #4f2818;
  --wakey-muted: #8a644f;
  --wakey-orange: #f36a12;
  --wakey-orange-strong: #d8570a;
  --wakey-orange-soft: #ffe2c6;
  --wakey-sand: #f0c48e;
  --wakey-olive: #9c9460;
  --wakey-rust: #c65a16;
  --wakey-line: rgba(123, 80, 52, 0.14);
  --wakey-shadow: 0 18px 45px rgba(128, 72, 28, 0.14);
  --wakey-radius-xl: 32px;
  --wakey-radius-lg: 24px;
  --wakey-radius-md: 18px;
  --wakey-radius-sm: 999px;
}

body {
  font-family: "Nunito Sans", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--wakey-ink);
  background:
    radial-gradient(circle at top left, rgba(243, 106, 18, 0.08), transparent 28%),
    linear-gradient(180deg, #fffaf5 0%, #f7eee6 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.42)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.main-header,
#header,
.navbar,
.navbar-main,
.header,
.top-nav {
  background:
    linear-gradient(180deg, rgba(248, 121, 33, 0.96), rgba(234, 98, 13, 0.96)),
    radial-gradient(circle at top, rgba(255, 215, 156, 0.35), transparent 30%);
  border-bottom: 1px solid rgba(133, 65, 14, 0.16);
  box-shadow: 0 8px 18px rgba(155, 78, 24, 0.18);
}

.main-header a,
#header a,
.navbar a,
.navbar-main a,
.header a,
.top-nav a {
  color: #fff5eb;
  font-weight: 700;
}

.btn,
button,
input[type="submit"],
input[type="button"] {
  border-radius: var(--wakey-radius-sm);
  font-weight: 800;
}

.btn-primary,
.btn-main,
.btn-success,
input[type="submit"],
input[type="button"] {
  border: 0;
  color: #fff6ef;
  background: linear-gradient(180deg, #ff8b2f 0%, var(--wakey-orange) 100%);
  box-shadow:
    inset 0 -2px 0 rgba(117, 42, 0, 0.18),
    0 10px 18px rgba(220, 103, 23, 0.22);
}

.btn-default,
.btn-secondary,
.btn-outline {
  color: var(--wakey-ink-strong);
  background: rgba(255, 247, 239, 0.92);
  border-color: rgba(152, 97, 60, 0.12);
}

.card,
.panel,
.package,
.product,
.pricing-box,
.feature-box,
.domain-search-box,
.tile,
.client-home-panels .panel {
  background: var(--wakey-paper);
  border: 1px solid var(--wakey-line);
  border-radius: var(--wakey-radius-md);
  box-shadow: var(--wakey-shadow);
}

.panel-heading,
.card-header,
.package-header,
.product-header {
  color: #fff8f1;
  background: linear-gradient(180deg, #ff7f22, #f2610e);
  border-bottom: 0;
}

.panel-title,
.card-title {
  color: inherit;
}

.form-control,
.form-select,
select,
textarea,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"] {
  border: 1px solid rgba(121, 76, 43, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--wakey-ink);
  box-shadow: none;
}

.form-control:focus,
.form-select:focus,
select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="search"]:focus {
  border-color: rgba(243, 106, 18, 0.42);
  box-shadow: 0 0 0 4px rgba(243, 106, 18, 0.12);
  outline: 0;
}

.wakey-home {
  position: relative;
  overflow: clip;
}

.wakey-home h1,
.wakey-home h2,
.wakey-home h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--wakey-ink);
}

.wakey-home p {
  margin: 0;
}

.wakey-kicker {
  margin-bottom: 0.75rem;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wakey-orange-strong);
}

.wakey-hero {
  position: relative;
  padding: 5rem 0 1.4rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 245, 236, 0.42)),
    linear-gradient(180deg, #fff9f4 0%, #f8ede4 100%);
}

.wakey-hero__grid,
.wakey-story__grid,
.wakey-support__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.wakey-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.95fr);
}

.wakey-hero__copy {
  max-width: 36rem;
  padding: 1.2rem 0 3.8rem;
}

.wakey-hero__copy h1 {
  font-size: clamp(3.2rem, 7vw, 5.8rem);
}

.wakey-hero__copy h1 span {
  color: var(--wakey-orange);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 0.14em;
}

.wakey-hero__lede,
.wakey-section-head > p:last-child,
.wakey-plan-card__copy,
.wakey-trust__item p,
.wakey-support__panel > p,
.wakey-faq-list p,
.wakey-story__author {
  color: var(--wakey-muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.wakey-hero__lede {
  max-width: 31rem;
  margin-top: 1.4rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.wakey-hero__actions,
.wakey-support__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.wakey-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.45rem;
  border-radius: var(--wakey-radius-sm);
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

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

.wakey-btn--primary {
  color: #fff6ef;
  background: linear-gradient(180deg, #ff8b2f 0%, var(--wakey-orange) 100%);
  box-shadow:
    inset 0 -2px 0 rgba(117, 42, 0, 0.18),
    0 10px 18px rgba(220, 103, 23, 0.28);
}

.wakey-btn--secondary {
  color: var(--wakey-ink-strong);
  background: rgba(255, 247, 239, 0.92);
  box-shadow: inset 0 0 0 1px rgba(152, 97, 60, 0.12);
}

.wakey-hero__media {
  position: relative;
  min-height: 35rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.wakey-hero__image-frame,
.wakey-story__card {
  position: relative;
  width: min(100%, 38rem);
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(124, 73, 31, 0.2);
}

.wakey-hero__image-frame {
  height: 34rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    radial-gradient(circle at top right, rgba(255, 197, 126, 0.34), transparent 34%),
    linear-gradient(140deg, #f08a2f 0%, #e56615 45%, #7b3d1d 100%);
}

.wakey-hero__image {
  position: absolute;
  inset: 1rem;
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='900' viewBox='0 0 1200 900'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' x2='1' y1='0' y2='1'%3E%3Cstop stop-color='%23f9a44e'/%3E%3Cstop offset='.55' stop-color='%23ef6e18'/%3E%3Cstop offset='1' stop-color='%23512e1b'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1200' height='900' fill='url(%23g)'/%3E%3Ccircle cx='930' cy='190' r='150' fill='rgba(255,255,255,.16)'/%3E%3Cpath d='M0 680C172 600 340 589 482 628C625 667 775 752 1200 655V900H0Z' fill='rgba(255,243,232,.26)'/%3E%3Cpath d='M0 740C194 686 338 680 500 721C664 763 828 824 1200 748V900H0Z' fill='rgba(255,228,198,.26)'/%3E%3C/svg%3E")
      center/cover no-repeat;
}

.wakey-hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 249, 243, 0) 36%, rgba(96, 50, 26, 0.36) 100%),
    radial-gradient(circle at 70% 25%, rgba(255, 255, 255, 0.18), transparent 18%);
}

.wakey-hero__badge {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  z-index: 1;
  padding: 0.7rem 1rem;
  border-radius: var(--wakey-radius-sm);
  background: rgba(255, 248, 241, 0.92);
  color: var(--wakey-ink-strong);
  font-weight: 800;
}

.wakey-spark {
  position: absolute;
  top: 2.4rem;
  width: 0;
  height: 0;
  border-left: 0.8rem solid transparent;
  border-right: 0.8rem solid transparent;
  border-bottom: 1.5rem solid #ff952d;
  filter: drop-shadow(0 6px 8px rgba(240, 130, 28, 0.2));
}

.wakey-spark--one {
  left: 10%;
  transform: rotate(-18deg);
}

.wakey-spark--two {
  left: 17%;
  top: 3.8rem;
  transform: rotate(26deg) scale(0.9);
}

.wakey-hero__backdrop,
.wakey-plans__backdrop {
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  pointer-events: none;
}

.wakey-ridge,
.wakey-ground {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(1500px, 100vw + 10rem);
  border-radius: 50%;
}

.wakey-ridge {
  height: 180px;
  background: radial-gradient(circle at center, rgba(244, 177, 108, 0.18), transparent 68%);
}

.wakey-ridge--a {
  bottom: 7rem;
}

.wakey-ridge--b {
  bottom: 3.4rem;
  width: min(1600px, 100vw + 18rem);
}

.wakey-ridge--c {
  bottom: 9rem;
}

.wakey-ridge--d {
  bottom: 5rem;
  width: min(1500px, 100vw + 14rem);
}

.wakey-ground {
  height: 150px;
}

.wakey-ground--a {
  bottom: -3rem;
  background:
    radial-gradient(circle at 20% 0%, rgba(164, 101, 47, 0.45), transparent 24%),
    linear-gradient(180deg, rgba(242, 175, 104, 0.7), rgba(232, 143, 53, 0.9));
}

.wakey-ground--b {
  bottom: -4.2rem;
  background: linear-gradient(180deg, rgba(187, 124, 57, 0.34), rgba(139, 91, 41, 0.55));
  opacity: 0.65;
}

.wakey-trust {
  position: relative;
  z-index: 1;
  padding: 1rem 0 2rem;
}

.wakey-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(255, 250, 246, 0.8);
  border: 1px solid rgba(158, 106, 61, 0.12);
  box-shadow: 0 10px 22px rgba(119, 72, 31, 0.06);
}

.wakey-trust__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.7rem 2rem;
  border-right: 1px solid var(--wakey-line);
}

.wakey-trust__item:last-child {
  border-right: 0;
}

.wakey-trust__icon {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  border-radius: 50%;
  font-size: 1.55rem;
  background: linear-gradient(180deg, #ffe7cc, #ffd7b0);
  box-shadow: inset 0 0 0 1px rgba(176, 113, 59, 0.08);
}

.wakey-trust__item h2 {
  font-size: 1.85rem;
}

.wakey-plans {
  position: relative;
  padding: 4.5rem 0 2rem;
}

.wakey-section-head {
  position: relative;
  z-index: 1;
  text-align: center;
}

.wakey-section-head h2 {
  font-size: clamp(2.7rem, 5vw, 4.2rem);
}

.wakey-section-head > p:last-child {
  margin-top: 0.75rem;
}

.wakey-plan-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.wakey-plan-card {
  background: rgba(255, 248, 242, 0.82);
  border: 1px solid rgba(156, 105, 63, 0.16);
  border-radius: var(--wakey-radius-md);
  box-shadow: var(--wakey-shadow);
  overflow: hidden;
}

.wakey-plan-card--featured {
  transform: translateY(-0.35rem);
}

.wakey-plan-card__head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.8rem;
  padding: 1rem 1.25rem;
  color: #fff8f1;
}

.wakey-plan-card__head--orange {
  background: linear-gradient(180deg, #ff7f22, #f2610e);
}

.wakey-plan-card__head--olive {
  background: linear-gradient(180deg, #9e9a65, #8b8657);
}

.wakey-plan-card__head--rust {
  background: linear-gradient(180deg, #cf681d, #bc4f0f);
}

.wakey-plan-card__head h3 {
  font-size: 1.95rem;
  color: inherit;
}

.wakey-plan-card__pill {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.35rem 0.7rem;
  border-radius: var(--wakey-radius-sm);
  background: rgba(255, 245, 230, 0.92);
  color: var(--wakey-ink-strong);
  font-size: 0.8rem;
  font-weight: 800;
}

.wakey-plan-card__body {
  padding: 1.6rem 1.8rem 1.9rem;
  text-align: center;
}

.wakey-plan-card__speed {
  color: var(--wakey-ink);
  font-size: 1.7rem;
  font-weight: 800;
}

.wakey-plan-card__speed::before,
.wakey-plan-card__speed::after {
  content: "";
  display: inline-block;
  width: 2.1rem;
  height: 2px;
  margin: 0 0.75rem;
  vertical-align: middle;
  background: rgba(112, 72, 46, 0.26);
}

.wakey-plan-card__price {
  margin: 1rem 0;
  color: var(--wakey-ink-strong);
  font-size: 2rem;
  font-weight: 900;
}

.wakey-plan-card__price span {
  font-size: 4.25rem;
  letter-spacing: -0.05em;
}

.wakey-plan-card__copy {
  margin-bottom: 1.6rem;
  font-size: 1.05rem;
}

.wakey-story {
  padding: 2rem 0 2.5rem;
}

.wakey-story__grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
}

.wakey-story__quote {
  padding: 2rem;
  background: linear-gradient(160deg, #fef0e3, #fddcb8);
  border-radius: var(--wakey-radius-xl);
  box-shadow: var(--wakey-shadow);
}

.wakey-story__quote blockquote {
  margin: 0.4rem 0 1rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--wakey-ink);
  line-height: 1.04;
}

.wakey-story__quote blockquote span {
  color: var(--wakey-orange);
  font-style: italic;
}

.wakey-story__author {
  font-weight: 800;
}

.wakey-story__card {
  height: 20rem;
  background:
    linear-gradient(145deg, #fff6ea 0%, #ffd8a8 48%, #f47a1f 100%);
}

.wakey-story__glow {
  position: absolute;
  inset: 1rem;
  border-radius: 2rem;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.7), transparent 24%),
    radial-gradient(circle at 50% 75%, rgba(117, 57, 26, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(96, 42, 16, 0.24));
}

.wakey-support {
  padding: 0 0 2.5rem;
}

.wakey-support__grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
}

.wakey-support__panel {
  padding: 2rem;
  background: rgba(255, 249, 243, 0.82);
  border: 1px solid rgba(156, 105, 63, 0.14);
  border-radius: var(--wakey-radius-lg);
  box-shadow: var(--wakey-shadow);
}

.wakey-support__panel h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.wakey-faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.wakey-faq-list article {
  padding: 1.1rem 1.2rem;
  background: rgba(255, 255, 255, 0.56);
  border-radius: var(--wakey-radius-md);
  border: 1px solid rgba(121, 76, 43, 0.08);
}

.wakey-faq-list h3 {
  font-size: 1.18rem;
  color: var(--wakey-ink-strong);
}

.wakey-support__links {
  margin: 1.4rem 0 0;
  padding-left: 1.1rem;
  color: var(--wakey-ink);
}

.wakey-support__links li + li {
  margin-top: 0.55rem;
}

.wakey-support__links a {
  color: var(--wakey-ink);
  font-weight: 700;
}

.wakey-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.wakey-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.wakey-home a:focus-visible,
.wakey-home button:focus-visible,
.wakey-home input:focus-visible,
.form-control:focus-visible,
.btn:focus-visible {
  outline: 3px solid rgba(243, 106, 18, 0.34);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .wakey-hero__grid,
  .wakey-plan-grid,
  .wakey-story__grid,
  .wakey-support__grid,
  .wakey-trust__grid {
    grid-template-columns: 1fr;
  }

  .wakey-hero__copy {
    max-width: 42rem;
    padding-bottom: 0.5rem;
  }

  .wakey-hero__media {
    min-height: 28rem;
  }

  .wakey-plan-card--featured {
    transform: none;
  }

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

  .wakey-trust__item:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 767px) {
  .wakey-hero {
    padding-top: 3rem;
  }

  .wakey-hero__copy h1 {
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }

  .wakey-hero__lede,
  .wakey-section-head > p:last-child,
  .wakey-trust__item p,
  .wakey-faq-list p,
  .wakey-support__panel > p {
    font-size: 1rem;
  }

  .wakey-hero__media {
    min-height: 22rem;
  }

  .wakey-hero__image-frame {
    height: 22rem;
  }

  .wakey-trust__item,
  .wakey-plan-card__body,
  .wakey-support__panel,
  .wakey-story__quote {
    padding-inline: 1.25rem;
  }

  .wakey-trust__item h2 {
    font-size: 1.45rem;
  }

  .wakey-plan-card__speed {
    font-size: 1.3rem;
  }

  .wakey-plan-card__speed::before,
  .wakey-plan-card__speed::after {
    width: 1rem;
    margin-inline: 0.45rem;
  }

  .wakey-plan-card__price span {
    font-size: 3.25rem;
  }
}

