/** Shopify CDN: Minification failed

Line 30:0 All "@import" rules must come first

**/
/* Fix Dawn's empty div hiding */
.terayn-hero__image,
.terayn-photo__image {
  display: block !important;
}

/* Hide Dawn's default header and footer */
.section-header { display: none !important; }

/* ===========================================
   TERAYN — Base Styles for Dawn Theme
   =========================================== */

:root {
  --terayn-green: #1F3A2B;
  --terayn-brown: #6B4F2F;
  --terayn-orange: #C65D1F;
  --terayn-gray: #4E5A60;
  --terayn-cream: #F2F0E6;
  --terayn-black: #0E0F11;
  --terayn-font: 'Manrope', sans-serif;
}

/* ---- Font Import ---- */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* ---- Reset Dawn defaults on Terayn sections ---- */
.terayn-section {
  font-family: var(--terayn-font);
  color: var(--terayn-black);
  line-height: 1.6;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

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

/* Override Dawn's default page width */
.terayn-section .page-width {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- Fade-in Animation ---- */
.terayn-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.terayn-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.terayn-fade[data-delay="1"] { transition-delay: 0.1s; }
.terayn-fade[data-delay="2"] { transition-delay: 0.2s; }
.terayn-fade[data-delay="3"] { transition-delay: 0.3s; }
.terayn-fade[data-delay="4"] { transition-delay: 0.4s; }
.terayn-fade[data-delay="5"] { transition-delay: 0.5s; }
.terayn-fade[data-delay="6"] { transition-delay: 0.6s; }
.terayn-fade[data-delay="8"] { transition-delay: 0.8s; }

/* ---- Section Label (small caps) ---- */
.terayn-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.terayn-label--orange { color: var(--terayn-orange); }
.terayn-label--gray { color: var(--terayn-gray); }
.terayn-label--white { color: #fff; opacity: 0.9; text-shadow: 0 2px 16px rgba(0,0,0,0.6); }

/* ---- Section Heading ---- */
.terayn-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  line-height: 1.25;
  color: var(--terayn-green);
}

.terayn-heading--light {
  color: var(--terayn-cream);
}

.terayn-heading--large {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.1;
  letter-spacing: -1px;
}

.terayn-heading--cta {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.15;
}

/* ---- Body Text ---- */
.terayn-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--terayn-gray);
}

.terayn-body--large {
  font-size: 17px;
  line-height: 1.8;
}

.terayn-body--light {
  color: rgba(242, 240, 230, 0.6);
}

/* ---- Buttons ---- */
.terayn-btn {
  display: inline-block;
  padding: 16px 48px;
  font-family: var(--terayn-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.terayn-btn--orange {
  background: var(--terayn-orange);
  color: #fff;
}

.terayn-btn--orange:hover {
  background: #B45219;
  transform: translateY(-1px);
}

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

.terayn-btn--green:hover {
  background: #162d20;
}

/* ---- Nav Override ---- */
.terayn-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: rgba(242, 240, 230, 0.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31, 58, 43, 0.06);
}

.terayn-nav__logo {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--terayn-green);
  text-transform: uppercase;
  text-decoration: none;
}

.terayn-nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.terayn-nav__link {
  font-size: 12px;
  font-weight: 500;
  color: var(--terayn-gray);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.terayn-nav__cta {
  padding: 10px 24px;
  background: var(--terayn-green);
  color: var(--terayn-cream);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
}

/* ---- Contour SVG ---- */
.terayn-contours {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ===========================================
   HERO SECTION
   =========================================== */
.terayn-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: var(--terayn-cream);
}

.terayn-hero__image {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center 35% !important;
  z-index: 0 !important;
}
.terayn-hero__image {
  filter: brightness(0.85) saturate(0.85) !important;
}

.terayn-photo__image {
  filter: brightness(0.9) saturate(0.85) !important;
}
.terayn-hero__gradient-v {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(242, 240, 230, 0.95) 0%,
    rgba(242, 240, 230, 0.7) 12%,
    rgba(242, 240, 230, 0.15) 35%,
    transparent 50%,
    rgba(242, 240, 230, 0.25) 78%,
    rgba(242, 240, 230, 0.7) 93%,
    var(--terayn-cream) 100%
  );
}

.terayn-hero__gradient-h {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(242, 240, 230, 0.35) 0%,
    transparent 18%,
    transparent 82%,
    rgba(242, 240, 230, 0.35) 100%
  );
}

.terayn-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 160px 40px 0;
}

.terayn-hero__spacer {
  flex: 1;
  min-height: 200px;
}

.terayn-hero__date {
  margin-top: 16px;
  font-size: 12px;
  color: var(--terayn-gray);
}

/* Hero load animations */
.terayn-hero__anim {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.terayn-hero.is-loaded .terayn-hero__anim--1 {
  opacity: 1; transform: translateY(0); transition-delay: 0.4s;
}
.terayn-hero.is-loaded .terayn-hero__anim--2 {
  opacity: 1; transform: translateY(0); transition-delay: 0.6s;
}
.terayn-hero.is-loaded .terayn-hero__anim--3 {
  opacity: 1; transform: translateY(0); transition-delay: 0.9s;
}
.terayn-hero.is-loaded .terayn-hero__anim--4 {
  opacity: 1; transform: translateY(0); transition-delay: 1.2s;
}

/* Scroll indicator */
.terayn-hero__scroll {
  position: absolute;
  bottom: 40px;
  opacity: 0;
  transition: opacity 1.5s ease 1.8s;
}

.terayn-hero.is-loaded .terayn-hero__scroll {
  opacity: 0.4;
}

.terayn-scroll-line {
  width: 1px;
  height: 48px;
  background: var(--terayn-gray);
  margin: 0 auto;
  animation: terayn-pulse 2s ease-in-out infinite;
}

@keyframes terayn-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.7; transform: scaleY(1.2); }
}

/* ===========================================
   VALUE PROP SECTION
   =========================================== */
.terayn-value-prop {
  padding: 120px 0;
  background: var(--terayn-cream);
}

.terayn-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
}

.terayn-three-col__number {
  font-size: 12px;
  font-weight: 700;
  color: var(--terayn-gray);
  opacity: 0.5;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.terayn-three-col__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--terayn-green);
  margin-bottom: 12px;
}

/* ===========================================
   PHOTO BREAK SECTION
   =========================================== */
.terayn-photo {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.terayn-photo__image {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center !important;
  z-index: 0 !important;
}

.terayn-photo__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Overlay variants */
.terayn-photo__overlay--cream {
  background: linear-gradient(
    180deg,
    var(--terayn-cream) 0%,
    rgba(242, 240, 230, 0.4) 8%,
    transparent 22%,
    transparent 78%,
    rgba(242, 240, 230, 0.4) 92%,
    var(--terayn-cream) 100%
  );
}

.terayn-photo__overlay--green-to-cream {
  background: linear-gradient(
    180deg,
    var(--terayn-green) 0%,
    rgba(31, 58, 43, 0.53) 8%,
    transparent 25%,
    transparent 75%,
    rgba(242, 240, 230, 0.53) 92%,
    var(--terayn-cream) 100%
  );
}

.terayn-photo__overlay--winter {
  background: linear-gradient(
    180deg,
    rgba(242, 240, 230, 0.03) 0%,
    rgba(242, 240, 230, 0.33) 6%,
    transparent 20%,
    transparent 80%,
    rgba(242, 240, 230, 0.33) 94%,
    var(--terayn-cream) 100%
  );
}

.terayn-photo__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 40px;
  width: 100%;
}

/* ===========================================
   WHAT'S INCLUDED (DARK)
   =========================================== */
.terayn-included {
  position: relative;
  background: var(--terayn-green);
  padding: 120px 0;
  overflow: hidden;
}

.terayn-included__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(242, 240, 230, 0.07);
}

.terayn-included__item {
  padding: 36px 40px;
  background: var(--terayn-green);
}

.terayn-included__item-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--terayn-cream);
  margin-bottom: 6px;
}

.terayn-included__item-desc {
  font-size: 14px;
  color: rgba(242, 240, 230, 0.6);
  line-height: 1.6;
}

/* ===========================================
   ACCESS (BEYOND YOUR GATE)
   =========================================== */
.terayn-access {
  padding: 120px 0;
  background: var(--terayn-cream);
}

.terayn-access__stat {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 300;
  color: var(--terayn-green);
  line-height: 1;
}

.terayn-access__stat-sub {
  font-size: 13px;
  font-weight: 500;
  color: var(--terayn-gray);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

/* ===========================================
   HOW IT WORKS
   =========================================== */
.terayn-steps {
  position: relative;
  padding: 120px 0;
  background: rgba(31, 58, 43, 0.024);
  overflow: hidden;
}

.terayn-step {
  display: grid;
  grid-template-columns: 80px 200px 1fr;
  gap: 40px;
  align-items: start;
  padding: 40px 0;
}

.terayn-step:not(:last-child) {
  border-bottom: 1px solid rgba(31, 58, 43, 0.08);
}

.terayn-step__number {
  font-size: 48px;
  font-weight: 200;
  color: var(--terayn-green);
  opacity: 0.2;
  line-height: 1;
}

.terayn-step__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--terayn-green);
  padding-top: 4px;
}

.terayn-step__desc {
  font-size: 15px;
  color: var(--terayn-gray);
  line-height: 1.7;
  max-width: 480px;
  padding-top: 5px;
}

/* ===========================================
   ACTIVITIES BAR
   =========================================== */
.terayn-activities {
  padding: 80px 0;
  background: var(--terayn-cream);
}

.terayn-activities__list {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.terayn-activities__item {
  font-size: 14px;
  font-weight: 500;
  color: var(--terayn-green);
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  padding: 8px 0;
  border-bottom: 2px solid rgba(31, 58, 43, 0.12);
}

/* ===========================================
   FINAL CTA
   =========================================== */
.terayn-cta {
  position: relative;
  padding: 140px 0;
  text-align: center;
  overflow: hidden;
  background: var(--terayn-cream);
}

.terayn-cta__form {
  display: flex;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
}

.terayn-cta__input {
  flex: 1;
  padding: 16px 20px;
  font-size: 14px;
  font-family: var(--terayn-font);
  border: 1px solid rgba(31, 58, 43, 0.18);
  border-right: none;
  border-radius: 2px 0 0 2px;
  background: #fff;
  color: var(--terayn-black);
  outline: none;
}

.terayn-cta__input:focus {
  border-color: rgba(31, 58, 43, 0.4);
}

.terayn-cta__submit {
  padding: 16px 32px;
  background: var(--terayn-orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--terayn-font);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 0 2px 2px 0;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.terayn-cta__submit:hover {
  background: #B45219;
}

.terayn-cta__success {
  font-size: 16px;
  color: var(--terayn-green);
  font-weight: 500;
}

/* ===========================================
   FOOTER OVERRIDE
   =========================================== */
.terayn-footer {
  padding: 48px 40px;
  border-top: 1px solid rgba(31, 58, 43, 0.08);
  background: var(--terayn-cream);
}

.terayn-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.terayn-footer__logo {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--terayn-green);
  text-transform: uppercase;
}

.terayn-footer__copy {
  font-size: 12px;
  color: var(--terayn-gray);
  opacity: 0.5;
}

.terayn-footer__links {
  display: flex;
  gap: 24px;
}

.terayn-footer__link {
  font-size: 12px;
  color: var(--terayn-gray);
  opacity: 0.5;
  text-decoration: none;
}

.terayn-footer__link:hover {
  opacity: 0.8;
}
/* ===========================================
   WAITLIST FORM
   =========================================== */
.terayn-waitlist-form {
  max-width: 560px;
}

.terayn-waitlist-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.terayn-waitlist-form__field--full {
  grid-column: 1 / -1;
}

.terayn-waitlist-form__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--terayn-green);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.terayn-waitlist-form__input {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: var(--terayn-font);
  border: 1px solid rgba(31, 58, 43, 0.18);
  border-radius: 2px;
  background: #fff;
  color: var(--terayn-black);
  outline: none;
  transition: border-color 0.2s ease;
}

.terayn-waitlist-form__input:focus {
  border-color: rgba(31, 58, 43, 0.5);
}

.terayn-waitlist-form__select {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: var(--terayn-font);
  border: 1px solid rgba(31, 58, 43, 0.18);
  border-radius: 2px;
  background: #fff;
  color: var(--terayn-black);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234E5A60' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.terayn-waitlist-form__select:focus {
  border-color: rgba(31, 58, 43, 0.5);
}

.terayn-waitlist-form__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.terayn-waitlist-form__check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(31, 58, 43, 0.15);
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  font-size: 14px;
  color: var(--terayn-gray);
}

.terayn-waitlist-form__check:hover {
  border-color: rgba(31, 58, 43, 0.35);
}

.terayn-waitlist-form__check input[type="checkbox"] {
  accent-color: var(--terayn-green);
  width: 16px;
  height: 16px;
}

.terayn-waitlist-form__check:has(input:checked) {
  border-color: var(--terayn-green);
  background: rgba(31, 58, 43, 0.04);
  color: var(--terayn-green);
}
/* ===========================================
   MOBILE RESPONSIVE
   =========================================== */
@media (max-width: 768px) {
  .terayn-nav {
    padding: 14px 20px;
  }

  .terayn-nav__links {
    gap: 16px;
  }

  .terayn-nav__link {
    font-size: 10px;
    letter-spacing: 0.5px;
  }

  .terayn-nav__cta {
    font-size: 10px;
    padding: 8px 16px;
  }

  .terayn-hero__content {
    padding: 130px 24px 0;
  }

  .page-width {
    padding: 0 24px;
  }

  .terayn-three-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .terayn-included__grid {
    grid-template-columns: 1fr;
  }

  .terayn-step {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .terayn-step__number {
    font-size: 32px;
  }

  .terayn-activities__list {
    gap: 24px;
  }

  .terayn-cta__form {
    flex-direction: column;
  }

  .terayn-cta__input {
    border-right: 1px solid rgba(31, 58, 43, 0.18);
    border-radius: 2px;
    margin-bottom: 8px;
  }

  .terayn-cta__submit {
    border-radius: 2px;
    padding: 16px;
  }

  .terayn-value-prop,
  .terayn-access,
  .terayn-steps,
  .terayn-included {
    padding: 80px 0;
  }

  .terayn-footer__inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}