:root{
  --bg:#ffffff;
  --text:#0b0b0c;
  --muted:#6e6e73;
  --line:#e5e5ea;
  --accent-start:#9BFF3C;
  --accent-end:#00D6FF;
  --max:1100px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"SF Pro Text","SF Pro Display",Inter,system-ui,sans-serif;
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
}

.wrap{
  width:min(var(--max),calc(100% - 60px));
  margin:0 auto;
}

section{padding:140px 0}
h1,h2,h3{margin:0;font-weight:600}
p{margin:0}

.reveal{
  opacity:0;
  transform:translateY(30px);
  transition:opacity 1s cubic-bezier(.2,.8,.2,1),transform 1s cubic-bezier(.2,.8,.2,1);
}
.reveal.in{opacity:1;transform:none}

header{padding-top:50px}
.nav-container{display:flex;flex-direction:column;align-items:center}
.brandLogoLink{margin-bottom:40px}
.brandLogoLink img{height:120px}
nav{display:flex;gap:40px}
nav a{
  text-decoration:none;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.15em;
  font-weight:500;
  color:var(--muted);
}
nav a:hover{color:var(--text)}

.hero{padding:240px 0 180px;text-align:center}
.hero h1{
  font-size:clamp(44px,7vw,82px);
  line-height:1.02;
  letter-spacing:-.03em;
  max-width:950px;
  margin:0 auto;
}
.hero h1 span{
  background:linear-gradient(90deg,var(--accent-start),var(--accent-end));
  -webkit-background-clip:text;
  color:transparent;
}
.hero p{
  margin:40px auto 0;
  font-size:22px;
  line-height:1.5;
  color:var(--muted);
  max-width:780px;
}

.statement{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:100px 0;
  text-align:center;
}
.statement p{
  font-size:26px;
  line-height:1.4;
  max-width:920px;
  margin:0 auto;
}

.section-header{
  text-align:center;
  margin-bottom:120px;
}
.section-header h2{
  font-size:42px;
  letter-spacing:-.02em;
  margin-bottom:18px;
}
.section-header p{
  font-size:18px;
  line-height:1.6;
  color:var(--muted);
  max-width:720px;
  margin:0 auto;
}

.products{
  display:grid;
  grid-template-columns:1fr;
  gap:160px;
  text-align:center;
}
.product{
  max-width:820px;
  margin:0 auto;
}
.productLogoWide{
  max-height:120px;
  display:block;
  margin:0 auto 24px;
}
.productName{
  font-size:36px;
  line-height:1.1;
}
.productName.calculini{
  font-family:"Poppins",sans-serif;
  font-weight:700;
}
.product p{
  font-size:19px;
  line-height:1.6;
  color:var(--muted);
  max-width:660px;
  margin:20px auto 0;
}
.product a{
  display:inline-block;
  margin-top:32px;
  font-size:16px;
  font-weight:500;
  color:var(--text);
  text-decoration:none;
  border-bottom:1px solid transparent;
}
.product a:hover{border-bottom-color:var(--text)}
.product a::after{content:" →"}

.badge-beta{
  font-size:10px;
  background:#f4f4f7;
  color:var(--muted);
  padding:5px 10px;
  border-radius:4px;
  margin-left:12px;
  text-transform:uppercase;
}

.philosophy{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:80px;
}
.philo h3{
  font-size:22px;
  margin-bottom:18px;
}
.philo h3 span{
  background:linear-gradient(90deg,var(--accent-start),var(--accent-end));
  -webkit-background-clip:text;
  color:transparent;
}
.philo p{
  font-size:16px;
  line-height:1.6;
  color:var(--muted);
}

#studio{background:#fafafa}
.studio-content{
  text-align:center;
  max-width:860px;
  margin:0 auto;
}
.studio-content h2{
  font-size:42px;
  margin-bottom:30px;
}
.studio-content p{
  font-size:19px;
  line-height:1.7;
  color:var(--muted);
}

footer{
  padding:120px 0 80px;
  border-top:1px solid var(--line);
}
.footer-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:14px;
  color:var(--muted);
}
.footer-links a{
  margin-left:30px;
  color:var(--muted);
  text-decoration:none;
}
.footer-links a:hover{color:var(--text)}

@media(max-width:950px){
  .hero{padding:140px 0 100px}
  .philosophy{grid-template-columns:1fr;gap:60px}
  .footer-content{flex-direction:column;gap:30px;text-align:center}
}