@charset "UTF-8";

:root {
  --bg: #ffffff;
  --bg-2: #f8f9fa;
  --ink: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 12px 28px -14px rgba(15, 23, 42, .16);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --maxw: 1240px;
}

* { box-sizing: border-box; }
*::selection { background: rgba(26, 115, 232, .16); color: #0f172a; }

html { min-height: 100%; -webkit-text-size-adjust: 100%; }

body {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15.5px;
  line-height: 1.55;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
}

h1 { margin: 0; line-height: 1.08; }
svg { display: block; max-width: 100%; }

.serif {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* Original Aline ambient background component. */
.bg-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.orb { position: absolute; border-radius: 50%; filter: blur(110px); opacity: .16; }
.orb-a { width: 620px; height: 620px; top: -220px; left: -120px; background: radial-gradient(circle, #a8c7fa 0%, transparent 70%); animation: drift 24s var(--ease) infinite alternate; }
.orb-b { width: 700px; height: 700px; top: 4%; right: -240px; background: radial-gradient(circle, #bae6fd 0%, transparent 70%); opacity: .18; animation: drift 30s var(--ease) infinite alternate-reverse; }
.orb-c { width: 560px; height: 560px; top: 46%; left: 34%; background: radial-gradient(circle, #aecbfa 0%, transparent 70%); opacity: .12; animation: drift 36s var(--ease) infinite alternate; }

@keyframes drift { to { transform: translate3d(70px, 60px, 0) scale(1.14); } }

.grid-veil {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(15,23,42,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(15,23,42,.04) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 10%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 10%, transparent 78%);
}

.grain {
  position: absolute;
  inset: -50%;
  opacity: .018;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Original Aline brand component. */
.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark { width: 40px; height: 40px; display: block; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-name { font-size: 25px; font-weight: 600; letter-spacing: -0.03em; }
.brand-name b { font-weight: 400; color: var(--muted); }

/* Original Aline hero component, reduced to its headline. */
.hero-solo {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 40px 0 72px;
  text-align: center;
}

.wrap { width: min(var(--maxw), calc(100% - 60px)); margin: 0 auto; }
.launch-brand { width: fit-content; margin: 0 auto 52px; }
.hero-solo h1 { font-size: clamp(40px, 6vw, 76px); font-weight: 400; letter-spacing: -.04em; }
.hero-solo h1 .line-1 { display: block; color: var(--ink); }

.hero-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 6px 34px 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-frame .serif {
  font-size: clamp(40px, 6.2vw, 80px);
  background: linear-gradient(100deg, #0f172a 15%, #1a73e8 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 720px) {
  .hero-solo { padding: 24px 0 36px; }
  .wrap { width: min(100% - 32px, var(--maxw)); }
  .launch-brand { margin-bottom: 38px; }
  .brand { gap: 11px; }
  .brand-mark { width: 35px; height: 35px; }
  .brand-name { font-size: 22px; }
  .hero-solo h1 { font-size: clamp(38px, 11vw, 54px); }
  .hero-frame { width: 100%; padding: 5px 12px 12px; border-radius: 16px; }
  .hero-frame .serif { font-size: clamp(39px, 11.5vw, 56px); }
}

@media (prefers-reduced-motion: reduce) {
  .orb { animation: none; }
}
