@font-face {
  font-family: Epilogue-Black;
  src: url(../fonts/Epilogue-Black.woff2) format("woff2");
  font-display: swap;
}
@font-face {
  font-family: Epilogue-Medium;
  src: url(../fonts/Epilogue-Medium.woff2) format("woff2");
  font-display: swap;
}
@font-face {
  font-family: LamaSans-Regular;
  src: url(../fonts/LamaSans-Regular.woff2) format("woff2");
  font-display: swap;
}
@font-face {
  font-family: LamaSans-Medium;
  src: url(../fonts/LamaSans-Medium.woff2) format("woff2");
  font-display: swap;
}
@font-face {
  font-family: LamaSans-SemiBold;
  src: url(../fonts/LamaSans-SemiBold.woff2) format("woff2");
  font-display: swap;
}
@font-face {
  font-family: Lora-Regular;
  src: url(../fonts/Lora-Regular.woff2) format("woff2");
  font-display: swap;
}
:root {
  --bg: #090a0e;
  --bg-soft: #0b0b11;
  --surface: #101016;
  --green: #124d3f;
  --green-light: #1e7a63;
  --green-text: #2fa88a;
  --white: #ffffff;
  --muted: #d4d4d4;
  --line: rgba(255, 255, 255, 0.1);
  --grad-card: linear-gradient(to top, #090a0e 0%, rgba(18, 77, 63, 0.55) 100%);
  --grad-fade: linear-gradient(180deg, rgba(10, 10, 15, 0) 0%, #0a0a0f 100%);
  --shadow-heavy: rgba(0, 0, 0, 0.5) 0px 8px 24px;
  --shadow-card: rgba(0, 0, 0, 0.3) 0px 8px 8px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  font-family: LamaSans-Regular, sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  background:
    radial-gradient(
      ellipse 55% 14% at 82% 3%,
      rgba(18, 77, 63, 0.16),
      transparent 65%
    ),
    radial-gradient(
      ellipse 50% 11% at 8% 40%,
      rgba(18, 77, 63, 0.08),
      transparent 65%
    ),
    radial-gradient(
      ellipse 50% 11% at 92% 66%,
      rgba(18, 77, 63, 0.07),
      transparent 65%
    ),
    radial-gradient(
      ellipse 55% 13% at 50% 92%,
      rgba(18, 77, 63, 0.12),
      transparent 65%
    ),
    var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}
::selection {
  background-color: var(--green);
  color: #fff;
  text-shadow: none;
}
.glow-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.glow-orb {
  position: absolute;
  width: min(58vw, 88rem);
  height: min(58vw, 88rem);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(18, 77, 63, 0.32) 0%,
    transparent 68%
  );
  filter: blur(48px);
  will-change: transform;
}
.glow-orb-a {
  top: -18%;
  right: -14%;
}
.glow-orb-b {
  bottom: -22%;
  left: -16%;
  background: radial-gradient(
    circle,
    rgba(18, 77, 63, 0.22) 0%,
    transparent 68%
  );
}
@media (max-width: 767px) {
  .glow-orb {
    width: 92vw;
    height: 92vw;
    filter: blur(36px);
  }
}
.glow-border {
  position: relative;
}
.glow-border:before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  padding: 1px;
  background: conic-gradient(
    from var(--angle, 0deg),
    transparent 0deg,
    rgba(30, 122, 99, 0.9) 40deg,
    rgba(255, 255, 255, 0.35) 55deg,
    rgba(30, 122, 99, 0.9) 70deg,
    transparent 110deg
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
}
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2.4rem;
}
h1,
h2,
h3 {
  font-family: Epilogue-Black, sans-serif;
  line-height: 1.15;
  color: var(--white);
}
h1 {
  font-size: clamp(2.8rem, 3.2vw, 3.6rem);
  text-wrap: balance;
}
h2 {
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  margin-bottom: 2rem;
  text-wrap: balance;
}
h1 strong,
h2 strong {
  font-family: Lora-Regular, serif;
  font-weight: 400;
  font-style: normal;
}
p {
  color: var(--muted);
  margin-bottom: 2rem;
  text-wrap: pretty;
}
.btn {
  font-family: LamaSans-Medium, sans-serif;
  font-size: 1.6rem;
  line-height: 2.8rem;
  display: inline-block;
  padding: 0.9rem 2.8rem;
  border-radius: 100px;
  border: 1px solid var(--green);
  background: transparent;
  color: #fff;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s;
}
.btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.btn-solid {
  background-color: var(--green);
}
.btn-solid:hover {
  background: transparent;
  border-color: var(--green);
}
.btn[disabled] {
  opacity: 0.6;
  cursor: wait;
}
.btn {
  min-height: 44px;
}
.btn:focus-visible,
.form-field input:focus-visible,
a:focus-visible {
  outline: 2px solid var(--green-light);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible {
  border-radius: 100px;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
.site-header {
  position: relative;
  padding: 2rem 0;
  border-bottom: 1px solid var(--green);
  background: var(--bg);
}
.site-header:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(30, 122, 99, 0.9) 35%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(30, 122, 99, 0.9) 65%,
    transparent 100%
  );
  background-size: 40% 100%;
  background-repeat: no-repeat;
  background-position: var(--sweep, -70%) 0;
  pointer-events: none;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.site-header .logo img {
  height: 2.4rem;
  width: auto;
  opacity: 0.9;
}
.hero {
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.5fr);
  align-items: center;
  gap: 4.8rem;
  padding-top: 4.8rem;
  padding-bottom: 4.8rem;
  min-height: 60vh;
  max-height: 80vh;
}
.hero h1 {
  margin-bottom: 2.4rem;
}
.hero p {
  font-size: 1.7rem;
}
.hero-visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(38%, 56rem);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.55) 32%,
    #000 68%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.55) 32%,
    #000 68%
  );
}
.hero-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #090a0e00 60%, #090a0ebf);
  pointer-events: none;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin: 3rem 0;
  list-style: none;
}
.hero-meta li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: LamaSans-Medium, sans-serif;
  font-size: 1.4rem;
  white-space: nowrap;
  color: var(--white);
  background: #090a0e73;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0.9rem 1.6rem;
}
.hero-meta svg {
  flex-shrink: 0;
  color: var(--green-light);
}
.hero-note {
  font-size: 1.4rem;
  color: var(--muted);
  margin-top: 1.6rem;
  margin-bottom: 0;
}
.section {
  padding: 7rem 0;
}
.section .intro {
  max-width: 72rem;
  font-size: 1.7rem;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 4.8rem;
  align-items: center;
}
.split-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.split-visual img {
  width: 100%;
}
.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-top: 3.2rem;
}
.ai-demo {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 2.4rem;
  margin-top: 3.2rem;
  box-shadow: var(--shadow-heavy);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.ai-demo img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.why-item {
  display: flex;
  gap: 1.8rem;
  align-items: flex-start;
}
.why-icon {
  flex-shrink: 0;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  background: #124d3f40;
  border: 1px solid var(--green);
  color: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-item h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.why-item p {
  font-size: 1.5rem;
  margin-bottom: 0;
}
.learn-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin-top: 3.2rem;
}
.learn-list li {
  position: relative;
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 2rem 2.4rem;
  font-size: 1.6rem;
  color: var(--white);
  line-height: 1.5;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.learn-list li:after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-card);
  opacity: 0.25;
  pointer-events: none;
}
.learn-list .check {
  flex-shrink: 0;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}
.host-card {
  display: grid;
  grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
  align-items: stretch;
  background: var(--grad-card);
  border: 1px solid var(--green);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 1.6rem;
  box-shadow: var(--shadow-heavy);
}
.host-photo {
  position: relative;
  min-height: 30rem;
}
.host-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(to right, #000 45%, transparent 98%);
  mask-image: linear-gradient(to right, #000 45%, transparent 98%);
}
.host-body {
  padding: 3.6rem 4rem;
  align-self: center;
}
.host-card h3 {
  font-size: 2.2rem;
  margin-bottom: 0.4rem;
}
.host-card .host-role {
  font-family: LamaSans-Medium, sans-serif;
  font-size: 1.3rem;
  color: var(--green-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.4rem;
}
.host-card p {
  margin-bottom: 0;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 3.2rem;
}
.info-grid .info-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 2.4rem 2.4rem 2.2rem;
  box-shadow: var(--shadow-card);
  transition:
    border-color 0.4s,
    transform 0.4s;
}
.info-grid .info-item:hover {
  border-color: var(--green);
  transform: translateY(-3px);
}
.info-item .info-label {
  font-family: LamaSans-Medium, sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-text);
  margin-bottom: 0.8rem;
}
.info-item .info-value {
  font-family: Epilogue-Black, sans-serif;
  font-size: 1.9rem;
  line-height: 1.3;
  color: var(--white);
}
.signup {
  padding: 8rem 0;
}
.signup-box {
  max-width: 64rem;
  margin: 0 auto;
  background: var(--bg-soft);
  border: 1px solid var(--green);
  border-radius: 16px;
  padding: 4.4rem 4.4rem 4rem;
  box-shadow: var(--shadow-heavy);
}
.signup-box h2 {
  text-align: center;
}
.signup-box .form-intro {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 3.2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.form-field {
  margin-bottom: 1.8rem;
}
.form-field label {
  display: block;
  font-family: LamaSans-Medium, sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
  color: var(--white);
}
.form-field input {
  width: 100%;
  font-family: LamaSans-Regular, sans-serif;
  font-size: 1.6rem;
  color: var(--white);
  background: #ffffff0d;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.3rem 1.6rem;
  outline: none;
  transition: border-color 0.3s;
}
.form-field input::placeholder {
  color: #ffffff80;
}
.form-field input:focus {
  border-color: var(--green-light);
}
.signup-box .btn {
  width: 100%;
  margin-top: 1rem;
}
.form-error {
  display: none;
  margin-top: 1.8rem;
  text-align: center;
  font-size: 1.5rem;
  color: #f3727f;
  background: #f3727f1a;
  border: 1px solid rgba(243, 114, 127, 0.4);
  border-radius: 10px;
  padding: 1.2rem 1.6rem;
}
.form-error.visible {
  display: block;
}
.form-privacy {
  margin: 2rem 0 0;
  text-align: center;
  font-size: 1.3rem;
  color: #ffffffa6;
}
.thanks {
  min-height: calc(100vh - 24rem);
  display: flex;
  align-items: center;
  padding: 8rem 0;
}
.thanks-inner {
  max-width: 68rem;
  margin: 0 auto;
  text-align: center;
}
.thanks-check {
  width: 7.2rem;
  height: 7.2rem;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.8rem;
  box-shadow: var(--shadow-heavy);
}
.thanks h1 {
  margin-bottom: 2.4rem;
}
.thanks .tip {
  display: inline-block;
  font-size: 1.5rem;
  color: var(--white);
  background: #124d3f40;
  border: 1px solid var(--green-light);
  border-radius: 10px;
  padding: 1.4rem 2.2rem;
  margin: 1rem 0 3.4rem;
}
.site-footer {
  border-top: 1px solid var(--green);
  padding: 5rem 0 3rem;
  background: var(--bg-soft);
}
.site-footer .footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3.6rem;
}
.site-footer .logo img {
  height: 3.2rem;
  width: auto;
}
.footer-contact {
  text-align: right;
  font-size: 1.5rem;
  color: var(--muted);
  line-height: 1.8;
}
.footer-contact a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contact a:hover {
  color: var(--green-light);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 2.4rem;
  font-size: 1.3rem;
  color: #ffffffa6;
  text-align: center;
}
@media (max-width: 991px) {
  .hero {
    background: linear-gradient(180deg, #090a0e 0% 28%, #124d3f59 52%, #090a0e);
  }
  .hero .container {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
    max-height: none;
    padding-top: 0;
  }
  .hero-visual {
    order: -1;
    position: relative;
    inset: auto;
    width: calc(100% + 4.8rem);
    margin: 0 -2.4rem;
    height: 38rem;
  }
  .hero-visual img {
    object-position: 50% 38%;
    -webkit-mask-image: linear-gradient(to bottom, #000 35%, transparent 96%);
    mask-image: linear-gradient(to bottom, #000 35%, transparent 96%);
  }
  .hero-visual:after {
    display: none;
  }
  .hero-content {
    position: relative;
    z-index: 1;
    margin-top: -9rem;
    text-align: center;
  }
  .hero-content p {
    margin-inline: auto;
  }
  .hero-meta {
    flex-direction: column;
    gap: 1rem;
  }
  .hero-meta li {
    width: 100%;
    justify-content: center;
  }
  .hero-content .btn {
    width: 100%;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }
  .split-visual {
    order: 2;
    max-width: 52rem;
  }
}
@media (max-width: 767px) {
  .ai-demo {
    display: none;
  }
  .hero .container {
    padding-top: 0;
    padding-bottom: 5rem;
  }
  .section,
  .signup {
    padding: 5rem 0;
  }
  .learn-list,
  .form-row {
    grid-template-columns: 1fr;
  }
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }
  .host-card {
    grid-template-columns: 1fr;
  }
  .host-photo {
    min-height: 28rem;
  }
  .host-photo img {
    -webkit-mask-image: linear-gradient(to bottom, #000 40%, transparent 98%);
    mask-image: linear-gradient(to bottom, #000 40%, transparent 98%);
  }
  .host-body {
    position: relative;
    z-index: 1;
    margin-top: -5rem;
    padding: 0 2.4rem 2.8rem;
  }
  .signup-box {
    padding: 3rem 2rem;
  }
  .footer-contact {
    text-align: left;
  }
  .site-header .header-cta {
    display: none;
  }
  .site-header .container {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}
