:root{
  --ink:#0f3044;
  --ink-soft:#405464;
  --gold:#bd8434;
  --gold-soft:#ead8bd;
  --cream:#fbf7ef;
  --paper:#fffdf8;
  --sage:#dfe8dc;
  --sage-deep:#6f826f;
  --line:rgba(15,48,68,.14);
  --shadow:0 24px 70px rgba(28,42,48,.12);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at 80% 0%, rgba(234,216,189,.75), transparent 34%),
    radial-gradient(circle at 10% 20%, rgba(223,232,220,.8), transparent 30%),
    var(--cream);
  line-height:1.55;
}

a{color:inherit;text-decoration:none}
.site-header{
  width:min(1180px, calc(100% - 32px));
  margin:20px auto 0;
  padding:16px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,253,248,.82);
  backdrop-filter: blur(18px);
  position:sticky;
  top:12px;
  z-index:20;
  box-shadow:0 10px 30px rgba(28,42,48,.06);
}

.brand{display:flex;align-items:center;gap:12px;letter-spacing:.18em;text-transform:uppercase}
.brand strong{display:block;font-family:Georgia, "Times New Roman", serif;font-weight:500;font-size:15px;line-height:1.05}
.brand-mark{width:46px;height:46px;color:var(--gold);display:grid;place-items:center}
.brand-mark svg{width:100%;height:100%}
.brand.small .brand-mark{width:34px;height:34px}
.brand.small strong{font-size:12px}

.nav{display:flex;align-items:center;gap:28px;font-size:14px;color:var(--ink-soft)}
.nav a:hover{color:var(--gold)}
.nav-cta,.button{
  display:inline-flex;align-items:center;justify-content:center;
  border-radius:12px;
  padding:12px 18px;
  font-weight:700;
  border:1px solid var(--gold);
}
.nav-cta{font-size:14px;color:var(--gold);background:#fffaf2}
.button.primary{background:var(--ink);color:white;border-color:var(--ink);box-shadow:0 12px 24px rgba(15,48,68,.18)}
.button.secondary{background:rgba(255,253,248,.72);color:var(--gold)}
.button.full{width:100%}
.button.big{font-size:18px;padding:16px 24px;margin-top:16px}

main{width:min(1180px, calc(100% - 32px));margin:0 auto}
.hero{
  min-height:680px;
  display:grid;
  grid-template-columns: 1.02fr .98fr;
  align-items:center;
  gap:52px;
  padding:72px 0 42px;
}
.eyebrow,.section-label{
  color:var(--gold);
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:13px;
  font-weight:800;
}
h1,h2,h3{line-height:1.05;margin:0 0 18px}
h1,h2{
  font-family:Georgia, "Times New Roman", serif;
  font-weight:400;
  letter-spacing:-.045em;
}
h1{font-size:clamp(58px, 8vw, 104px)}
h2{font-size:clamp(36px, 5vw, 64px)}
h3{font-size:22px;font-family:Georgia, "Times New Roman", serif;font-weight:500}
.subhead{
  font-size:clamp(20px, 2.2vw, 28px);
  color:var(--ink-soft);
  max-width:650px;
}
.cta-row{display:flex;gap:16px;flex-wrap:wrap;margin:32px 0 16px}
.micro{font-size:14px;color:var(--ink-soft)}
.center{text-align:center}

.hero-art{
  position:relative;
  min-height:540px;
  border-radius:40px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  background:
    linear-gradient(160deg, rgba(255,253,248,.3), rgba(15,48,68,.1)),
    radial-gradient(circle at 40% 30%, rgba(255,255,255,.9), transparent 18%),
    linear-gradient(145deg, #f5e2c4, #dce8e7 48%, #123348 100%);
}
.hero-art:before{
  content:"";
  position:absolute;inset:0;
  background:
    radial-gradient(circle at 32% 38%, rgba(255,255,255,.95), transparent 5%),
    linear-gradient(to top, rgba(15,48,68,.45), transparent 45%);
}
.orb{
  position:absolute;right:11%;top:16%;
  width:270px;height:270px;border:3px solid rgba(189,132,52,.75);
  border-radius:50%;
}
.sun{
  position:absolute;right:33%;top:30%;
  width:34px;height:34px;border-radius:50%;
  background:var(--gold);
  box-shadow:0 0 0 11px rgba(189,132,52,.18),0 0 0 24px rgba(189,132,52,.08);
}
.waves{position:absolute;right:4%;bottom:23%;width:78%;height:170px}
.waves span{
  display:block;height:34px;border-bottom:3px solid rgba(189,132,52,.78);
  border-radius:50%;transform:rotate(-7deg);
}
.stone{position:absolute;border-radius:50%;background:rgba(15,48,68,.78);filter:blur(.2px)}
.s1{right:8%;bottom:11%;width:220px;height:70px}
.s2{right:18%;bottom:20%;width:140px;height:50px}
.s3{right:1%;bottom:25%;width:100px;height:42px}

.cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin:-20px 0 74px;
}
.card,.price-card,.phone,.feature,.founder,.join,.disclaimer,.split,.pricing,.app-preview{
  background:rgba(255,253,248,.78);
  border:1px solid var(--line);
  box-shadow:0 14px 48px rgba(28,42,48,.06);
}
.card{
  padding:28px;
  border-radius:24px;
}
.icon{
  width:54px;height:54px;border-radius:50%;
  background:var(--sage);
  display:grid;place-items:center;
  color:var(--gold);
  font-size:25px;
  margin-bottom:18px;
}
.card p,.split p,.feature p,.pricing p,.app-preview p,.founder p,.join p,.disclaimer p{
  color:var(--ink-soft);
}
.split,.pricing,.app-preview{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:48px;
  align-items:center;
  border-radius:36px;
  padding:52px;
  margin-bottom:28px;
}
.round-image{
  min-height:310px;
  border-radius:999px 999px 32px 32px;
  border:2px solid rgba(189,132,52,.45);
  background:
    radial-gradient(circle at 45% 30%, rgba(255,255,255,.95), transparent 15%),
    linear-gradient(145deg, #dce8e7, #f4ddba 56%, #102f43);
  position:relative;overflow:hidden;
}
.plant:before,.plant:after{
  content:"";position:absolute;bottom:55px;left:50%;width:2px;background:var(--sage-deep);border-radius:8px;
}
.plant:before{height:130px;transform:rotate(-12deg)}
.plant:after{height:90px;transform:rotate(24deg)}
.feature,.founder,.join,.disclaimer{
  border-radius:36px;
  padding:52px;
  margin-bottom:28px;
}
.feature-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:30px}
.feature-grid div{
  padding:26px;border:1px solid var(--line);border-radius:22px;background:rgba(251,247,239,.7);
}
.inline-cta{margin-top:26px}
.pricing{grid-template-columns:1fr 390px}
.price-card{
  border-radius:28px;
  padding:34px;
  background:linear-gradient(180deg, rgba(255,253,248,.94), rgba(223,232,220,.72));
}
.price{font-family:Georgia, "Times New Roman", serif;font-size:58px;margin:0 0 12px}
.price span{font-size:20px;color:var(--ink-soft)}
ul{padding-left:20px;color:var(--ink-soft)}
li{margin:10px 0}
.app-preview{grid-template-columns:1fr 340px}
.phone{
  border-radius:38px;
  padding:26px;
  min-height:520px;
  background:linear-gradient(180deg,#fffdf8,#f4ebdc);
  border:9px solid #111;
}
.phone-header{font-size:12px;letter-spacing:.18em;text-transform:uppercase;color:var(--gold);margin-bottom:28px}
.phone-card{display:flex;justify-content:space-between;padding:18px;border:1px solid var(--line);border-radius:18px;margin:12px 0;background:white}
.phone-card span{color:var(--gold)}
.join{text-align:center}
.disclaimer{font-size:14px}
.disclaimer h2{font-size:32px}
.footer{
  width:min(1180px, calc(100% - 32px));
  margin:32px auto;
  padding:30px 0 50px;
  display:flex;align-items:center;justify-content:space-between;gap:20px;
  color:var(--ink-soft);
  border-top:1px solid var(--line);
}

@media (max-width: 920px){
  .site-header{border-radius:24px;align-items:flex-start}
  .nav{display:none}
  .hero,.split,.pricing,.app-preview{grid-template-columns:1fr}
  .cards,.feature-grid{grid-template-columns:1fr 1fr}
  .hero{padding-top:50px}
  .hero-art{min-height:420px}
}
@media (max-width: 620px){
  .site-header{width:calc(100% - 22px);padding:14px}
  .nav-cta{display:none}
  main{width:calc(100% - 22px)}
  h1{font-size:52px}
  .cards,.feature-grid{grid-template-columns:1fr}
  .split,.pricing,.app-preview,.feature,.founder,.join,.disclaimer{padding:28px;border-radius:26px}
  .footer{flex-direction:column;align-items:flex-start}
}
