/* ==========================================================
   GTH RESULTS — STYLES
   ==========================================================
   Green text like this is a note to you. Notes start with a
   slash-star and end with a star-slash, and they have no
   effect on the website.
   ========================================================== */


/* ==========================================================
   >>> YOUR COLORS <<<
   ----------------------------------------------------------
   This is the ONLY place you need to change colors.
   Every color on the site comes from these six lines.
   The codes are "hex codes" — the # followed by 6 characters.
   Pick new ones at https://htmlcolorcodes.com if you like.
   ========================================================== */
:root {
  --ink:    #101728;   /* Near-black navy — headlines, dark sections */
  --green:  #22E08A;   /* Bright green — from your logo arrow */
  --blue:   #1B4FE8;   /* Strong blue — from your logo wordmark */
  --white:  #FFFFFF;   /* Page background */
  --mist:   #F3F6FB;   /* Very light grey — alternating sections */
  --muted:  #5C6780;   /* Grey — body text and small print */

  /* Spacing and shape. Leave these unless you want to fine-tune. */
  --radius: 14px;
  --gutter: 24px;
  --maxw:   1080px;
}


/* ==========================================================
   BASICS — you shouldn't need to touch anything below here
   unless you want to change layout or sizing.
   ========================================================== */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Archivo", system-ui, sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
}

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

a { color: inherit; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Hides the anti-spam field on the form */
.hidden-field { position: absolute; left: -9999px; }


/* ==========================================================
   SMALL LABEL ABOVE HEADINGS ("Our team", "Free stuff")
   ========================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* The little green arrow marker — echoes your logo */
.eyebrow__dot {
  width: 14px;
  height: 10px;
  background: var(--green);
  clip-path: polygon(0 68%, 62% 68%, 62% 100%, 100% 50%, 62% 0, 62% 32%, 0 32%);
}

.eyebrow--light { color: rgba(255,255,255,0.72); }


/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border: 0;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.btn--solid {
  background: var(--ink);
  color: var(--white);
}

.btn--solid:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(27, 79, 232, 0.28);
}

.btn--green {
  background: var(--green);
  color: var(--ink);
}

.btn--green:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(34, 224, 138, 0.4);
}


/* ==========================================================
   NAVIGATION BAR
   ========================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(16, 23, 40, 0.07);
}

.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav__logo img { height: 44px; width: auto; }

.nav .btn { padding: 11px 22px; font-size: 14px; }


/* ==========================================================
   HERO
   ========================================================== */
.hero {
  padding: 84px 0 72px;
  text-align: center;
  background:
    radial-gradient(58% 48% at 50% 0%, rgba(34,224,138,0.10), transparent 70%),
    radial-gradient(46% 40% at 50% 18%, rgba(27,79,232,0.08), transparent 72%),
    var(--white);
}

.hero__title {
  font-size: clamp(2.3rem, 6vw, 4.15rem);
  font-weight: 800;
  max-width: 900px;
  margin: 0 auto 22px;
}

/* THE SIGNATURE TOUCH — rising green underline under the
   second line of the headline, echoing your logo's arrow. */
.rise {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.rise::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -0.1em;
  height: 0.15em;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: rotate(-1.2deg);
  transform-origin: center;
}

.hero__sub {
  max-width: 56ch;
  margin: 0 auto 42px;
  font-size: 1.06rem;
  color: var(--muted);
}


/* ==========================================================
   VIDEO AREA
   ========================================================== */
.video {
  max-width: 780px;
  margin: 0 auto 46px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(16, 23, 40, 0.16);
}

/* Makes any YouTube/Vimeo video you paste in fill the box nicely */
.video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
}

.video__placeholder {
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--ink);
  color: var(--white);
}

.video__play {
  width: 66px;
  height: 66px;
  margin-bottom: 8px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
}

.video__play svg { width: 30px; height: 30px; fill: var(--ink); margin-left: 4px; }

.video__label { margin: 0; font-weight: 600; }

.video__hint { margin: 0; font-size: 13px; color: rgba(255,255,255,0.55); }


/* ==========================================================
   EMAIL SIGNUP FORM
   ========================================================== */
.signup {
  max-width: 560px;
  margin: 0 auto;
  scroll-margin-top: 90px;
}

.signup__label {
  display: block;
  margin-bottom: 12px;
  font-family: "Archivo", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.signup__row { display: flex; gap: 10px; }

.signup__input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
  border: 1.5px solid rgba(16,23,40,0.16);
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
}

.signup__input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(27,79,232,0.14);
}

.signup__fineprint {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--muted);
}


/* ==========================================================
   CLIENT LOGO STRIP — NOT CURRENTLY USED
   ----------------------------------------------------------
   Kept here for when you have clients to show. To switch it
   on, paste this into index.html just above the ABOUT YOU
   section, and swap the names for real ones:

     <section class="clients">
       <div class="wrap">
         <p class="clients__label">Trusted by local businesses</p>
         <div class="clients__row">
           <span>Client One</span>
           <span>Client Two</span>
         </div>
       </div>
     </section>
   ========================================================== */
.clients {
  padding: 44px 0;
  border-top: 1px solid rgba(16,23,40,0.07);
  border-bottom: 1px solid rgba(16,23,40,0.07);
  background: var(--mist);
}

.clients__label {
  margin: 0 0 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.clients__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 52px;
}

.clients__row span {
  font-family: "Archivo", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  opacity: 0.42;
  transition: opacity 0.2s ease;
}

.clients__row span:hover { opacity: 0.85; }

.clients__row img { max-height: 34px; width: auto; opacity: 0.55; }


/* ==========================================================
   TEAM
   ========================================================== */
.team {
  padding: 88px 0;
  text-align: center;
  border-top: 1px solid rgba(16,23,40,0.08);
}

.section__title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  margin: 0 0 20px;
}

.team__intro {
  max-width: 54ch;
  margin: 0 auto 44px;
  color: var(--muted);
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 26px;
}

/* Keeps a single card from stretching across the whole page.
   Remove this class from index.html when you add more people. */
.team__grid--solo {
  max-width: 330px;
  margin: 0 auto;
}

.member {
  padding: 32px 22px;
  border: 1px solid rgba(16,23,40,0.09);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.member:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 16px 38px rgba(16,23,40,0.11);
}

.member__avatar {
  width: 88px;
  height: 88px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(140deg, var(--blue), var(--green));
  color: var(--white);
  font-family: "Archivo", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.member__name { font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }

.member__role { margin: 0 0 14px; font-size: 14px; color: var(--muted); }

.member__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1.5px solid rgba(27,79,232,0.3);
}

.member__link:hover { border-bottom-color: var(--blue); }


/* ==========================================================
   FREE OFFER BLOCK
   ========================================================== */
.offer { padding: 0 0 92px; }

.offer__card {
  padding: 62px 40px;
  border-radius: 22px;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(rgba(16,23,40,0.78), rgba(16,23,40,0.86)),
    url("images/background.png") center / cover no-repeat;
}

.offer__title {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 800;
  margin: 0 0 18px;
}

.offer__body {
  max-width: 52ch;
  margin: 0 auto 30px;
  color: rgba(255,255,255,0.78);
}


/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  padding: 72px 0 40px;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(rgba(16,23,40,0.90), rgba(16,23,40,0.97)),
    url("images/background.png") center / cover no-repeat;
}

.footer__logo { height: 44px; width: auto; margin: 0 auto 28px; }

.footer__tagline {
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  font-weight: 800;
  margin: 0 0 10px;
}

.footer__sub { margin: 0 0 52px; color: rgba(255,255,255,0.6); }

.footer__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.footer__cols h4 {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
}

.footer__cols p { margin: 0 0 6px; font-size: 15px; color: rgba(255,255,255,0.72); }

.footer__cols a { text-decoration: none; }

.footer__cols a:hover { color: var(--green); }

.footer__copy {
  margin: 26px 0 0;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}


/* ==========================================================
   TERMS OF SERVICE PAGE
   ========================================================== */
.legal__hero {
  padding: 72px 0 40px;
  text-align: center;
  background:
    radial-gradient(56% 60% at 50% 0%, rgba(34,224,138,0.10), transparent 72%),
    var(--white);
}

.legal__title {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 800;
  margin: 0 0 10px;
}

.legal__updated {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.legal { padding: 12px 0 88px; }

/* Legal text stays left-aligned for readability, but the
   column itself sits centered on the page. */
.legal__body {
  width: 100%;
  max-width: 68ch;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: left;
}

.legal__body h2 {
  margin: 52px 0 16px;
  padding-top: 26px;
  border-top: 2px solid var(--green);
  font-size: 1.6rem;
  font-weight: 800;
}

.legal__body h2:first-child { margin-top: 20px; }

.legal__body h3 {
  margin: 34px 0 10px;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--blue);
}

.legal__body p { margin: 0 0 16px; color: #333B4E; }

.legal__body ul { margin: 0 0 16px; padding-left: 20px; color: #333B4E; }

.legal__body li { margin-bottom: 7px; }


/* ==========================================================
   PHONE AND TABLET ADJUSTMENTS
   ========================================================== */

/* Lets the headline's second line wrap before it can overflow */
@media (max-width: 900px) {
  .rise { white-space: normal; }
}

@media (max-width: 640px) {
  .hero { padding: 56px 0 52px; }
  .hero__title { max-width: 100%; }

  /* Stops the headline underline from overflowing on narrow screens */
  .rise { white-space: normal; }

  .signup__row { flex-direction: column; }
  .signup__row .btn { width: 100%; }

  .offer__card { padding: 44px 24px; }
  .team { padding: 62px 0; }
  .clients__row { gap: 16px 30px; }
  .clients__row span { font-size: 0.95rem; }
}


/* ==========================================================
   ACCESSIBILITY
   ========================================================== */
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
