:root {
  --ink:    #0f0f0f;
  --ink2:   #3a3a3a;
  --muted:  #888;
  --border: #e5e5e5;
  --cream:  #fafaf8;
  --white:  #ffffff;
  --blue:   #4285F4;
  --red:    #EA4335;
  --yellow: #FBBC05;
  --green:  #34A853;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── NOISE TEXTURE ── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ── GOOGLE STRIPE ── */
.stripe {
  display: flex;
  height: 3px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
}
.stripe div { flex: 1; }

/* ── HEADER ── */
header {
  position: relative;
  z-index: 1;
  padding: 80px 48px 64px;
  max-width: 900px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.eyebrow-dot {
  display: flex;
  gap: 4px;
}
.eyebrow-dot span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -.02em;
}

h1 em {
  font-style: italic;
  color: var(--muted);
}

.tagline {
  font-size: 17px;
  color: var(--ink2);
  line-height: 1.7;
  max-width: 480px;
  font-weight: 300;
}

.tagline strong {
  font-weight: 500;
  color: var(--ink);
}

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0 48px;
  position: relative;
  z-index: 1;
}

/* ── DEMOS ── */
.demos {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 48px;
}

.demos-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}

/* ── DEMO CARD ── */
.demo-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: all .2s;
  cursor: pointer;
}

.demo-card:hover .card-arrow { transform: translate(4px, -4px); color: var(--blue); }
.demo-card:hover .card-title  { color: var(--blue); }

.card-left { min-width: 0; }

/* ── TAG ── */
.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.card-tag.live {
  background: #e8f5e9;
  color: #1b5e20;
}
.card-tag.live::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}

.card-tag.soon {
  background: #fff8e1;
  color: #795548;
}

.card-tag.external {
  background: #e8f0fe;
  color: #1a56a0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}

/* ── CARD CONTENT ── */
.card-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 8px;
  transition: color .2s;
  letter-spacing: -.01em;
}

.card-desc {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.65;
  max-width: 500px;
  font-weight: 300;
  margin-bottom: 16px;
}

.card-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.stack-pill {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  padding: 3px 9px;
  border-radius: 4px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--muted);
  letter-spacing: .04em;
}

.card-arrow {
  font-size: 22px;
  color: var(--border);
  transition: all .2s;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ── COMING SOON ── */
.card-coming {
  opacity: .5;
  cursor: default;
}
.card-coming:hover .card-title { color: var(--ink); }
.card-coming:hover .card-arrow { transform: none; color: var(--border); }

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 32px 48px;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-left {
  font-size: 13px;
  color: var(--muted);
}

.footer-link {
  font-size: 12px;
  font-family: 'DM Mono', monospace;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: .04em;
  transition: color .15s;
}
.footer-link:hover { color: var(--ink); }

.gccloud-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--muted);
  font-family: 'DM Mono', monospace;
  letter-spacing: .04em;
}

.gccloud-dots {
  display: flex;
  gap: 2px;
}
.gccloud-dots span {
  width: 5px; height: 5px;
  border-radius: 50%;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

header { animation: fadeUp .6s ease both; }
.demos { animation: fadeUp .6s ease both; animation-delay: .1s; }
footer { animation: fadeUp .6s ease both; animation-delay: .2s; }

/* ── MOBILE ── */
@media (max-width: 600px) {
  header, .demos, footer, .divider { padding-left: 24px; padding-right: 24px; }
  header { padding-top: 56px; padding-bottom: 40px; }
  .demos { padding-top: 40px; padding-bottom: 40px; }
  .demo-card { grid-template-columns: 1fr; }
  .card-arrow { display: none; }
}