@import url('https://fonts.googleapis.com/css?family=Google+Sans:400,500,700&display=swap');

html, body {
  overflow-x: hidden;
  font-family: 'Google Sans', sans-serif !important;
  margin: 0;
  padding: 0;
}

/* Fonts */
body {
  font-family: 'Google Sans', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #111;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

:root{
  --bg: #FFFFFF;
  --bg-2: #FFFFFF;
  --text: #000000;
  --accent: #000000;
}

.site-header{
  position: sticky;
  top: 0;
  background: var(--bg);
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,.06);
  backdrop-filter: saturate(140%) blur(6px);
  z-index: 50;
}

.nav{
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

/* Brand Logo */
.logo{
  height: 30px;
  width: auto;
  display: block;
}

/* Menu */
.menu{
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-self: end;
}
.menu a{
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 2px;
  position: relative;
}
.menu a::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-6px;
  height:2px;
  background: var(--accent);
  opacity:0; transform: translateY(4px);
  transition: .25s ease;
}
.menu a:hover::after{ opacity:1; transform: translateY(0); }

/* Hamburger */
.nav-toggle{ display:none; }
.hamburger{
  display: none;
  width: 36px; height: 28px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.hamburger span{
  display:block;
  height:2px;
  width:100%;
  background: var(--text);
  border-radius: 2px;
}

/* Mobile */
@media (max-width: 880px){
  .nav{ grid-template-columns: auto auto; }
  .menu{
    position: fixed;
    top: 60px; left: 12px; right: 12px;
    background: var(--bg-2);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 12px;
    flex-direction: column;
    gap: 6px;
    transform: scale(.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .menu a{ display:block; padding: 12px 14px; border-radius: 10px; }
  .menu a:hover{ background: rgba(255,255,255,.06); }
  .hamburger{ display:flex; align-items:center; }
  .nav-toggle:checked ~ .menu{
    opacity: 1; transform: scale(1); pointer-events: auto;
  }
  .nav-toggle:checked + .hamburger span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked + .hamburger span:nth-child(2){ opacity: 0; }
  .nav-toggle:checked + .hamburger span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
}

:root{
  --hero-bg: #F40101;         /* slate-900 */
  --hero-card: #F40101;       /* slate-900 slightly different */
  --text: #FFFFFF;            /* gray-200 */
  --muted: #FFFFFF;           /* gray-400 */
  --accent: #FFFFFF;          /* violet-400 */
  --btn: #000000;             /* violet-500 */
  --btn-hover: #000000;       /* violet-600 */
}

/* Visually hidden utility for captions etc. */
.visually-hidden{position:absolute!important;height:1px;width:1px;overflow:hidden;clip:rect(1px,1px,1px,1px);white-space:nowrap;}

.hero{
  position: relative;
  background: radial-gradient(1200px 600px at 15% 10%, rgba(167,139,250,.18), transparent 60%),
              linear-gradient(0deg, var(--hero-card), var(--hero-card));
  color: var(--text);
  padding: clamp(48px, 6vw, 84px) 0;
  overflow: hidden;
}

/* Decorative wave */
.hero-bg{
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 220px; width: 100%;
  opacity: .14;
  background: linear-gradient(135deg, #111827, #f58529, #dd2a7b, #8134af, #515bd4, #405de6);
}
.hero-bg path{ fill: #ffffff; }

.hero-wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

/* Copy side */
.eyebrow{
  color: #000;
  text-transform: none;
  font-weight: 600;
  letter-spacing: .2px;
  margin: 0 0 10px;
}

.hero-title{
  font-family: "Google Sans", Roboto, "Helvetica Neue", Arial;
  font-weight: 800;
  margin: 0 0 14px;
  line-height: 1.05;
  font-size: clamp(36px, 6vw, 68px);
}
.hero-title .accent{ color: var(--text); text-shadow: 0 1px 0 rgba(0,0,0,.4); }

.hero-subtitle{
  color: #FFFFFF;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.65;
  max-width: 48ch;
  margin: 12px 0 22px;
}

.hero-cta{
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
}

.btn{
  --ring: 255 255 255 / .18;
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; text-decoration: none;
  padding: 12px 18px; border-radius: 12px;
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease, opacity .2s ease;
  border: 1px solid rgba(255,255,255,.08);
  will-change: transform;
}
.btn svg{ width: 18px; height: 18px; fill: currentColor; }
.btn.primary{
  background: linear-gradient(180deg, var(--btn), var(--btn-hover));
  color: #fff; border-color: transparent;
  box-shadow: 0 10px 22px -10px rgba(139,92,246,.65);
}
.btn.primary:hover{ transform: translateY(-1px); }
.btn.ghost{
  color: var(--text); background: transparent;
}
.btn.ghost:hover{ background: rgba(255,255,255,.06); }

.hero-proof{
  color: #000;
  margin: 14px 0 0;
  font-size: 14px;
}

/* Art side */
.hero-art{
  margin: 0; padding: 0;
  display: grid; place-items: center;
  position: relative;
}
.hero-art picture{
  display:block; position: relative;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.45));
}
.hero-art img{
  display:block;
  width: 320px; height: 660px; /* keep CLS low; match attributes */
  object-fit: contain; border-radius: 24px;
}

/* Subtle floating animation (GPU-friendly) */
@media (prefers-reduced-motion: no-preference){
  .hero-art img{ animation: float 6s ease-in-out infinite; }
  @keyframes float{
    0%{ transform: translateY(0); }
    50%{ transform: translateY(-8px); }
    100%{ transform: translateY(0); }
  }
}

/* Responsive */
@media (max-width: 980px){
  .hero-wrap{
    grid-template-columns: 1fr;
    text-align: left;
  }
  .hero-art img{
    width: min(72vw, 360px);
    height: auto; /* maintains aspect because width/height set on tag too */
  }
}

/* ===== Definition + Features (CapCut) ===== */
:root{
  --cap-ink:   #0f172a;   /* headings */
  --cap-text:  #111827;   /* body */
  --cap-muted: #6b7280;   /* subtle text */
  --cap-accent:#0ea5a3;   /* teal accent */
  --cap-soft:  #e8f6f7;   /* pale bg */
  --cap-card:  #ffffff;
}

/* Shared section layout */
.section{
  position: relative;
  padding: clamp(36px, 5.5vw, 64px) 0;   /* compact + responsive */
}
.container{ max-width: 1100px; margin: 0 auto; padding: 0 20px; }

.section-title{
  font-family: "Google Sans", Roboto, "Helvetica Neue", Arial;
  font-weight: 800;
  color: var(--cap-ink);
  font-size: clamp(28px, 4.5vw, 40px);
  line-height: 1.1;
  text-align: center;
  margin: 0 0 12px;
}
.lead{
  margin: 6px auto 0;
  max-width: 75ch;
  text-align: center;
  color: var(--cap-muted);
  line-height: 1.75;
  font-size: clamp(16px, 1.7vw, 18px);
}

/* Definition section */
.defn{
  background:
    radial-gradient(900px 300px at 50% -80px, rgba(14,165,163,.14), transparent 60%),
    linear-gradient(0deg, var(--cap-soft), var(--cap-soft));
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  margin-top: -8px;                 /* closes gap with hero */
  padding-top: clamp(32px, 5vw, 56px);
}

/* Features section */
.features{
  background: linear-gradient(180deg, var(--cap-soft), #f7fbfb);
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

/* Feature grid */
.feature-grid{
  display: grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: clamp(16px, 2.6vw, 28px);
  margin: 18px auto 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 1080px){
  .feature-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 640px){
  .feature-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}

/* Feature card */
.feature-item{
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
}

.icon{
  width: 86px; height: 86px;
  border-radius: 22px;
  display: grid; place-items: center;
  background:
    radial-gradient(120px 80px at 30% 20%, rgba(14,165,163,.16), rgba(14,165,163,.08)),
    linear-gradient(180deg, rgba(255,255,255,.8), rgba(255,255,255,.6));
  border: 1px solid rgba(14,165,163,.18);
  box-shadow: 0 10px 24px -14px rgba(14,165,163,.45);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.icon img{ width: 44px; height: 44px; display:block; }

.feature-item:hover .icon{
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -14px rgba(14,165,163,.55);
}

.label{
  margin: 0;
  color: var(--cap-text);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: .2px;
}

/* Motion + Dark mode care */
@media (prefers-reduced-motion: reduce){
  .feature-item:hover .icon{ transform: none; }
}
@media (prefers-color-scheme: dark){
  .defn, .features{
    background: linear-gradient(180deg, #0e1728, #0b1322);
  }
  .section-title{ color:#e5e7eb; }
  .lead{ color:#9ca3af; }
  .label{ color:#e5e7eb; }
  .icon{
    background: linear-gradient(180deg, rgba(14,165,163,.14), rgba(14,165,163,.08));
    border-color: rgba(14,165,163,.25);
    box-shadow: 0 0 0 1px rgba(0,0,0,.2);
  }
}

/* ---------- Article (single scope) ---------- */
.article{
  --ink: #0f172a;
  --text:#1f2937;
  --muted:#6b7280;
  --bg:#ffffff;
  --edge:#e5e7eb;
  --accent:#8b5cf6;

  max-width: 900px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px) 20px;
  color: var(--text);
  background: var(--bg);
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(2,6,23,.06);
}

.article h1{
  margin: 0 0 10px;
  font: 700 clamp(26px, 4.6vw, 38px)/1.12 "Google Sans", "Google Sans Text", "Product Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  color: var(--ink);
  letter-spacing: .2px;
}
.article h2{
  margin: clamp(22px, 4vw, 34px) 0 10px;
  font: 700 clamp(26px, 4.6vw, 38px)/1.12 "Google Sans", "Google Sans Text", "Product Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  color: var(--ink);
}
.article p{ margin: 10px 0 0; line-height: 1.75; }
.article em{ font-style: italic; }
.article strong{ font-weight: 700; }

.article ul,
.article ol{
  margin: 10px 0 0 1.2rem;
  padding: 0;
  line-height: 1.7;
}
.article ul li{ list-style: disc; }
.article ol li{ list-style: decimal; }

/* Table */
.article table{
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  background: #fff;
  border: 1px solid var(--edge);
  border-radius: 12px;
  overflow: hidden;
}
.article th,
.article td{
  padding: 12px 14px;
  border-bottom: 1px solid var(--edge);
  text-align: left;
  font-size: 15px;
}
.article thead th{
  background: #f9fafb;
  color: var(--ink);
  font-weight: 800;
}
.article tbody tr:nth-child(even){ background: #fafafa; }

/* Blockquote tip */
.article blockquote{
  margin: 14px 0 0;
  padding: 12px 14px;
  border-left: 4px solid var(--accent);
  background: linear-gradient(180deg, rgba(139,92,246,.08), rgba(139,92,246,.04));
  border-radius: 8px;
  color: var(--text);
}

/* Links */
.article a{
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(139,92,246,.35);
}
.article a:hover{ border-bottom-color: rgba(139,92,246,.7); }

/* Responsive niceties */
@media (max-width: 640px){
  .article{ padding: 24px 16px; }
  .article table{ font-size: 14px; }
}
@media (prefers-color-scheme: dark){
  .article{
    --bg:#0b1220;
    --text:#e5e7eb;
    --ink:#f3f4f6;
    --edge:#1f2937;
    box-shadow: 0 8px 30px rgba(0,0,0,.35);
  }
  .article thead th{ background:#0f172a; }
  .article tbody tr:nth-child(even){ background:#0e1626; }
}

/* ===== FAQ (no JS) ===== */
.faq{
  --ink:#0f172a;           /* heading */
  --text:#1f2937;          /* body */
  --muted:#6b7280;         /* subtle */
  --card:#ffffff;          /* card bg */
  --edge:#e5e7eb;          /* borders */
  --accent:#8b5cf6;        /* violet */
  --soft:#eef6ff;          /* faint top bg */

  max-width: 900px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px) 20px;
  background:
    radial-gradient(900px 280px at 50% -120px, rgba(139,92,246,.10), transparent 60%),
    linear-gradient(0deg, #f7fbfb, #f7fbfb);
  border-radius: 18px;
}

.faq > h2{
  margin: 0 0 14px;
  font: 800 clamp(24px, 4.5vw, 34px)/1.1 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  color: var(--ink);
  text-align: center;
}

.faq .qa{
  background: var(--card);
  border: 1px solid var(--edge);
  border-radius: 14px;
  padding: 0;               /* summary has its own padding */
  box-shadow: 0 8px 26px rgba(2,6,23,.06);
  overflow: hidden;
}
.faq .qa + .qa{ margin-top: 10px; }

.faq summary{
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 700;
  color: var(--ink);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}
.faq summary::-webkit-details-marker{ display:none; }

/* Chevron */
.faq summary::after{
  content:"";
  width: 18px; height: 18px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(-45deg);
  transition: transform .2s ease, border-color .2s ease;
}
.faq .qa[open] summary::after{
  transform: rotate(45deg);
  border-color: var(--accent);
}

/* Answer area */
.faq .answer{
  padding: 0 16px 14px 16px;
  border-top: 1px solid var(--edge);
}
.faq .answer p{
  margin: 10px 0 0;
  color: var(--text);
  line-height: 1.75;
  font-size: 16px;
}

/* Focus-visible ring for keyboard users */
.faq summary:focus-visible{
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 10px;
}

/* Dark mode friendly */
@media (prefers-color-scheme: dark){
  .faq{
    --card:#0b1220; --edge:#1f2937;
    --text:#e5e7eb; --ink:#f3f4f6; --muted:#94a3b8;
    background: linear-gradient(0deg,#0e1728,#0b1322);
  }
  .faq .qa{ box-shadow: 0 0 0 1px rgba(0,0,0,.3); }
  .faq summary::after{ border-color: var(--muted); }
}

/* ===== Footer (single menu: About, Contact, Terms, Privacy) ===== */
.footer{
  --ft-bg-start:#0f172a;
  --ft-bg-end:#0b1322;
  --ft-text:#e5e7eb;
  --ft-muted:#9ca3af;
  --ft-edge:rgba(255,255,255,.08);
  --ft-accent:#8b5cf6;

  background: linear-gradient(180deg, var(--ft-bg-start), var(--ft-bg-end));
  color: var(--ft-text);
  border-top: 1px solid var(--ft-edge);
  padding: clamp(26px, 4vw, 40px) 0 0;
}

.ft-wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px clamp(18px, 3.5vw, 26px);
  display: grid;
  grid-template-columns: 1fr auto;  /* brand | menu */
  gap: 24px;
  align-items: center;
}

.ft-brand{ display:inline-flex; align-items:center; gap:10px; text-decoration:none; color:inherit; }
.ft-logo{ height: 28px; width:auto; display:block; }

/* single nav block */
.ft-nav{ display: block; }
.ft-menu{
  list-style:none; margin:0; padding:0;
  display:flex; gap:16px 18px; flex-wrap: wrap;
  justify-content: flex-end;
}
.ft-menu a{
  color: var(--ft-text);
  text-decoration: none;
  font-size: 14.5px;
  opacity:.9;
  padding: 6px 0;
  position: relative;
  transition: opacity .2s ease;
}
.ft-menu a:hover{ opacity:1; }
.ft-menu a:focus-visible{
  outline: 2px solid var(--ft-accent);
  outline-offset: 3px;
  border-radius: 8px;
}

/* Meta row */
.ft-meta{
  margin-top: 8px;
  border-top: 1px solid var(--ft-edge);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 20px 18px;
  color: var(--ft-muted);
  font-size: 14px;
}

.ft-top{
  color: var(--ft-text);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding-right: 18px;
}
.ft-top::after{
  content:"";
  position:absolute; right:0; top:50%;
  width: 8px; height: 8px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: translateY(-50%) rotate(-45deg);
}

/* Responsive */
@media (max-width: 820px){
  .ft-wrap{ grid-template-columns: 1fr; }
  .ft-menu{ justify-content: flex-start; }
}
@media (max-width: 520px){
  .ft-meta{ flex-direction: column; align-items: flex-start; }
  .ft-top{ align-self: flex-end; }
}

/* ===== Download Page (scoped) ===== */
.download{
  --ink:#0f172a;
  --text:#1f2937;
  --edge:#e5e7eb;
  --surface:#ffffff;
  --brand:#F40101;
  --brand2:#F40101;

  background: var(--surface);
}
.download .wrap{
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 36px) 20px;
}

/* Heading + description */
.download h1{
  margin: 0 0 10px;
  font: 800 clamp(24px, 4.5vw, 36px)/1.12 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  color: var(--ink);
}
.download .desc{
  margin: 6px 0 16px;
  color: var(--text);
  line-height: 1.7;
}

/* Table */
.download .dl-table{
  width: 100%;
  border: 1px solid var(--edge);
  border-radius: 12px;
  border-collapse: collapse;
  overflow: hidden;
  background: #fff;
  margin: 0 0 14px;
}
.download .dl-table th,
.download .dl-table td{
  padding: 12px 14px;
  border-bottom: 1px solid var(--edge);
  text-align: left;
  font-size: 15px;
}
.download .dl-table th{
  width: 34%;
  font-weight: 800;
  color: var(--ink);
  background: #f9fafb;
}
.download .dl-table tr:last-child th,
.download .dl-table tr:last-child td{ border-bottom: 0; }

/* Download button */
.download .btn{
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(180deg, var(--brand), var(--brand2));
  box-shadow: 0 10px 22px -10px rgba(139,92,246,.55);
  transition: transform .08s ease, box-shadow .2s ease, filter .2s ease;
}
.download .btn:hover{ transform: translateY(-1px); filter: brightness(1.03); }
.download .btn:focus-visible{
  outline: 2px solid rgba(139,92,246,.6);
  outline-offset: 3px;
}

/* Mobile niceties */
@media (max-width: 520px){
  .download .wrap{ padding: 20px 16px; }
  .download .dl-table{ display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .download .btn{ width: 100%; text-align: center; }
}

/* Dark mode */
@media (prefers-color-scheme: dark){
  .download{
    --surface:#0b1220;
    --ink:#f3f4f6;
    --text:#e5e7eb;
    --edge:#1f2937;
  }
  .download .dl-table{ background:#0b1220; border-color: var(--edge); }
  .download .dl-table th{ background:#0f172a; color: var(--ink); }
}


/* ===== Info Pages (About / Contact / Terms / Privacy) ===== */
.info{
  --ink:#0f172a;
  --text:#1f2937;
  --muted:#6b7280;
  --edge:#e5e7eb;
  --bg:#ffffff;
  --accent:#8b5cf6;

  background: var(--bg);
}
.info .wrap{
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 40px) 20px;
}

/* Headings & text */
.info h1{
  margin: 0 0 10px;
  font: 800 clamp(26px, 4.8vw, 36px)/1.12 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  color: var(--ink);
}
.info h2{
  margin: clamp(18px, 4vw, 26px) 0 8px;
  font: 800 clamp(18px, 3.6vw, 22px)/1.2 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  color: var(--ink);
}
.info p{ margin: 8px 0 0; color: var(--text); line-height: 1.75; }
.info .lead{ color: var(--muted); }

/* Lists */
.info ul, .info ol{ margin: 8px 0 0 1.2rem; padding: 0; line-height: 1.7; }
.info li{ margin: 4px 0; }
.info .tick{ list-style: none; margin-left: 0; }
.info .tick li{ padding-left: 24px; position: relative; }
.info .tick li::before{
  content:""; position:absolute; left:0; top:9px; width:10px; height:10px;
  border-right:2px solid var(--accent); border-bottom:2px solid var(--accent); transform: rotate(45deg);
}

/* Card */
.info .card{
  background:#fff; border:1px solid var(--edge); border-radius:16px;
  padding: clamp(16px, 3.6vw, 22px);
  box-shadow: 0 8px 26px rgba(2,6,23,.06);
  margin: 14px 0;
}

/* Muted/Small text */
.info .muted{ color: var(--muted); }
.info .small{ font-size: 14px; }

/* Links */
.info a{ color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(139,92,246,.35); }
.info a:hover{ border-bottom-color: rgba(139,92,246,.7); }

/* Contact form (no backend yet) */
.info .form{
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.info .form .full{ grid-column: 1 / -1; }
.info .form label{ display: grid; gap: 6px; font-weight: 700; color: var(--ink); }
.info .form input, .info .form textarea{
  appearance: none; width: 100%;
  border: 1px solid var(--edge); border-radius: 12px;
  padding: 10px 12px; font: 500 15px/1.4 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  color: var(--text); background:#fff;
}
.info .form textarea{ resize: vertical; }
.info .btn{
  justify-self: start;
  display: inline-block; padding: 12px 18px; border-radius: 12px;
  background: linear-gradient(180deg, var(--accent), #7c3aed);
  color:#fff; font-weight: 800; border: none; cursor: pointer;
  box-shadow: 0 10px 22px -10px rgba(139,92,246,.55);
  transition: transform .08s ease, filter .2s ease;
}
.info .btn:hover{ transform: translateY(-1px); filter: brightness(1.03); }

/* Tables (if you add any) */
.info table{
  width: 100%; border-collapse: collapse; border: 1px solid var(--edge);
  border-radius: 12px; overflow: hidden; background:#fff; margin-top: 10px;
}
.info th, .info td{ padding: 12px 14px; border-bottom: 1px solid var(--edge); text-align: left; }
.info thead th{ background:#f9fafb; color: var(--ink); font-weight: 800; }

/* Responsive */
@media (max-width: 700px){
  .info .form{ grid-template-columns: 1fr; }
}
@media (prefers-color-scheme: dark){
  .info{
    --bg:#0b1220; --ink:#f3f4f6; --text:#e5e7eb; --muted:#9ca3af; --edge:#1f2937;
  }
  .info .card, .info table{ background:#0b1220; border-color: var(--edge); }
  .info thead th{ background:#0f172a; }
  .info input, .info textarea{ background:#0b1220; color: var(--text); }
}
