/* ══════════════════════════════════════════
   AURIS — Shared Styles
   Extracted from original oneauris.com
══════════════════════════════════════════ */

/* ══════════════════════════════════════════
   VARIABLES
══════════════════════════════════════════ */
:root {
  --navy: #0B1F3A;
  --blue: #5BA4CF;
  --blue2: #2E6DA4;
  --gold: #C5A55A;
  --gold-dim: rgba(197,165,90,0.25);
  --white: #FFFFFF;
  --border: rgba(91,164,207,0.15);
}

/* ══════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: 'Lora', Georgia, serif; background: var(--navy); color: var(--white); line-height: 1.7; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ══════════════════════════════════════════
   SKIP NAV
══════════════════════════════════════════ */
.skip-nav {
  position: absolute; top: -100px; left: 0; z-index: 9999;
  background: var(--blue); color: var(--white); padding: 12px 24px; font-size: 14px;
  text-decoration: none; transition: top 0.2s;
}
.skip-nav:focus { top: 0; }

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.12); }
}
@keyframes pulse-gold {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(197,165,90,0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(197,165,90,0); }
}
.animate-on-scroll {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-on-scroll.visible {
  opacity: 1; transform: translateY(0);
}

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
nav {
  background: rgba(11,31,58,0.95); backdrop-filter: blur(16px);
  border-bottom: none;
  padding: 0 52px; height: 82px; display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 100;
}
.logo-img { height: 72px; width: auto; }
.logo {
  display: inline-flex; align-items: center; text-decoration: none;
}
.logo img { height: 26px; width: auto; }
.ncta-login {
  border: 1px solid rgba(255,255,255,0.4); color: var(--white); padding: 9px 20px;
  font-family: 'Lora', Georgia, serif; font-size: 13px; letter-spacing: 0.03em;
  transition: border-color 0.3s, background 0.3s; display: inline-block;
  text-decoration: none; background: transparent;
}
.ncta-login:hover { border-color: var(--white); background: rgba(255,255,255,0.08); color: var(--white); }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--white); text-decoration: none; font-family: 'Lora', Georgia, serif;
  font-size: 13px; letter-spacing: 0.03em; transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a.active { color: var(--blue); }
.nav-cta {
  background: var(--blue); color: var(--white); padding: 10px 22px;
  font-family: 'Lora', Georgia, serif; font-size: 13px; letter-spacing: 0.03em;
  transition: background 0.3s, transform 0.2s; display: inline-block;
  text-decoration: none;
}
.nav-cta:hover { background: var(--blue2); transform: translateY(-1px); color: var(--white); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; transition: 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 82px; left: 0; right: 0; bottom: 0;
  background: rgba(11,31,58,0.98); z-index: 99; padding: 40px 32px;
  flex-direction: column; gap: 28px;
}
.mobile-menu a {
  color: var(--white); text-decoration: none; font-family: 'Lora', Georgia, serif;
  font-size: 18px; letter-spacing: 0.03em;
}
.mobile-menu.active { display: flex; }

/* ══════════════════════════════════════════
   PAINTING BACKGROUNDS
══════════════════════════════════════════ */
.painting-bg {
  position: relative; overflow: hidden;
}
.painting-bg::before {
  content: ''; position: absolute; inset: 0;
  background-size: cover; background-position: center;
  animation: slowZoom 18s ease-in-out infinite alternate;
  opacity: 0.35; z-index: 0;
}
.painting-bg > * { position: relative; z-index: 1; }

.bg-starry::before { background-image: url('starry-night.jpg'); }
.bg-almond::before { background-image: url('almond-blossom.jpg'); }
.bg-rhone::before { background-image: url('starry-rhone.jpg'); }
.bg-wheat::before { background-image: url('wheatfield-crows.jpg'); }
.bg-empty1::before { background-image: url('empty1.png'); }
.bg-empty2::before { background-image: url('empty2.png'); }
.bg-thin::before { background-image: url('thin_strip.png'); }
.bg-dupe::before { background-image: url('dupereplacement.png'); }

/* Dark overlay to keep text readable */
.painting-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,31,58,0.55) 0%, rgba(11,31,58,0.7) 100%);
  z-index: 0;
}

/* ══════════════════════════════════════════
   SECTION LAYOUT
══════════════════════════════════════════ */
.section { max-width: 1320px; margin: 0 auto; padding: 100px 52px; }
.section-label {
  font-family: 'Lora', Georgia, serif; font-size: 13px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 12px;
}
.section-title {
  font-family: 'Lora', Georgia, serif; font-size: clamp(28px, 4vw, 44px);
  font-weight: 700; letter-spacing: -0.01em; margin-bottom: 20px; line-height: 1.2;
  color: var(--white);
}
.section-sub {
  font-family: 'Lora', Georgia, serif; font-size: 16px;
  color: var(--blue); max-width: 640px; line-height: 1.85; margin-bottom: 52px;
}
.divider { display: none; }
.full-width-section {
  width: 100%; padding: 100px 0; position: relative; overflow: hidden;
}
.full-width-section .inner { max-width: 1320px; margin: 0 auto; padding: 0 52px; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero-wrap {
  width: 100%; min-height: 90vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-wrap::before {
  content: ''; position: absolute; inset: 0;
  background: url('starry-night.jpg') center/cover;
  animation: slowZoom 18s ease-in-out infinite alternate;
  opacity: 0.35;
}
.hero-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,31,58,0.5) 0%, rgba(11,31,58,0.85) 100%);
}
.hero { max-width: 1320px; margin: 0 auto; padding: 80px 52px; position: relative; z-index: 1; }
.stage-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Lora', Georgia, serif; font-size: 13px; letter-spacing: 0.06em;
  color: var(--gold); border: 1px solid var(--gold-dim);
  padding: 10px 20px; border-radius: 24px; margin-bottom: 36px;
  animation: fadeIn 1s ease 0.2s both;
}
.stage-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  animation: pulse-gold 2s ease-in-out infinite;
}
.hero h1 {
  font-family: 'Lora', Georgia, serif; font-size: clamp(38px, 6vw, 72px);
  font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 28px;
  color: var(--white);
  animation: fadeInUp 1s ease 0.3s both;
}
.hero h1 .accent { color: var(--blue); }
.hero-desc {
  font-family: 'Lora', Georgia, serif; font-size: 18px;
  color: var(--white); max-width: 620px; line-height: 1.8; margin-bottom: 44px;
  animation: fadeInUp 1s ease 0.5s both;
}

/* Hero form */
.hero-form {
  display: flex; gap: 12px; flex-wrap: wrap; align-items: flex-end; margin-bottom: 56px;
  animation: fadeInUp 1s ease 0.7s both;
}
.hero-form .field { display: flex; flex-direction: column; gap: 6px; }
.hero-form label {
  font-family: 'Lora', Georgia, serif; font-size: 11px; letter-spacing: 0.1em;
  color: var(--blue); text-transform: uppercase;
}
.hero-form input {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(91,164,207,0.3);
  color: var(--white); padding: 14px 18px; font-family: 'Lora', Georgia, serif; font-size: 14px;
  width: 230px; outline: none; transition: border-color 0.3s;
}
.hero-form input:focus { border-color: var(--blue); }
.hero-form input::placeholder { color: var(--blue); opacity: 0.5; }
.btn-primary {
  background: var(--blue); color: var(--white); padding: 14px 32px; border: none;
  font-family: 'Lora', Georgia, serif; font-size: 14px; letter-spacing: 0.04em; cursor: pointer;
  transition: background 0.3s, transform 0.2s; text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--blue2); transform: translateY(-1px); }

/* Hero stats */
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  padding-top: 52px; border-top: 1px solid rgba(91,164,207,0.2);
  animation: fadeInUp 1s ease 0.9s both;
}
.hero-stat-num {
  font-family: 'Lora', Georgia, serif; font-size: 36px; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 8px; color: var(--white);
}
.hero-stat-label { font-family: 'Lora', Georgia, serif; font-size: 14px; color: var(--blue); line-height: 1.6; }
.hero-stat-source { font-family: 'Lora', Georgia, serif; font-size: 11px; color: var(--blue); opacity: 0.6; margin-top: 6px; }

/* ══════════════════════════════════════════
   PAGE HERO (for subpages)
══════════════════════════════════════════ */
.page-hero-wrap {
  width: 100%; min-height: 50vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.page-hero-wrap::before {
  content: ''; position: absolute; inset: 0;
  background: url('starry-night.jpg') center/cover;
  animation: slowZoom 18s ease-in-out infinite alternate;
  opacity: 0.25;
}
.page-hero-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,31,58,0.6) 0%, rgba(11,31,58,0.9) 100%);
}
.page-hero {
  max-width: 1320px; margin: 0 auto; padding: 80px 52px; position: relative; z-index: 1;
}
.page-hero h1 {
  font-family: 'Lora', Georgia, serif; font-size: clamp(32px, 5vw, 56px);
  font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 20px;
  color: var(--white);
  animation: fadeInUp 1s ease 0.3s both;
}
.page-hero h1 .accent { color: var(--blue); }
.page-hero-desc {
  font-family: 'Lora', Georgia, serif; font-size: 18px;
  color: var(--white); max-width: 640px; line-height: 1.8;
  animation: fadeInUp 1s ease 0.5s both;
}

/* ══════════════════════════════════════════
   FEATURES
══════════════════════════════════════════ */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.feature-card {
  padding: 36px; border: 1px solid var(--border); transition: border-color 0.3s, transform 0.3s;
}
.feature-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.feature-num {
  font-family: 'Lora', Georgia, serif; font-size: 12px; letter-spacing: 0.12em;
  color: var(--blue); margin-bottom: 18px;
}
.feature-card h3 { font-family: 'Lora', Georgia, serif; font-size: 20px; font-weight: 700; margin-bottom: 14px; color: var(--white); }
.feature-card p { font-family: 'Lora', Georgia, serif; font-size: 15px; color: var(--blue); line-height: 1.75; }

/* ══════════════════════════════════════════
   PROOF BAR
══════════════════════════════════════════ */
.proof-items { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding: 52px 0; }
.proof-item { font-family: 'Lora', Georgia, serif; font-size: 14px; color: var(--blue); line-height: 1.7; }
.proof-item strong { color: var(--white); display: block; font-family: 'Lora', Georgia, serif; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; }

/* ══════════════════════════════════════════
   BETA ENROLLMENT
══════════════════════════════════════════ */
.beta-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.beta-card {
  padding: 40px 32px; border: 1px solid var(--border); transition: border-color 0.3s, transform 0.3s;
}
.beta-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.beta-step {
  font-family: 'Lora', Georgia, serif; font-size: 12px; letter-spacing: 0.12em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 18px;
}
.beta-card h3 { font-family: 'Lora', Georgia, serif; font-size: 22px; font-weight: 700; margin-bottom: 14px; color: var(--white); }
.beta-card p { font-family: 'Lora', Georgia, serif; font-size: 15px; color: var(--blue); line-height: 1.75; }

/* ══════════════════════════════════════════
   SECURITY
══════════════════════════════════════════ */
.security-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.security-item { padding: 32px; border: 1px solid var(--border); transition: border-color 0.3s, transform 0.3s; }
.security-item:hover { border-color: var(--gold); transform: translateY(-4px); }
.security-item h4 { font-family: 'Lora', Georgia, serif; font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--white); }
.security-item p { font-family: 'Lora', Georgia, serif; font-size: 14px; color: var(--blue); line-height: 1.75; }

/* ══════════════════════════════════════════
   PRODUCT SCREENSHOT SECTIONS
══════════════════════════════════════════ */
.product-row {
  display: flex; align-items: center; gap: clamp(40px, 5vw, 80px);
  max-width: 1320px; margin: 0 auto; padding: 80px 52px;
}
.product-row.flip { flex-direction: row-reverse; }
.product-row-txt { flex: 0 0 42%; max-width: 440px; }
.product-row-img { flex: 1; min-width: 0; }
.product-row-img img {
  width: 100%; border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 0 0.5px rgba(255,255,255,0.06);
}
.product-row-txt .section-label { margin-bottom: 12px; }
.product-row-txt h2 {
  font-family: 'Lora', Georgia, serif; font-size: clamp(24px, 3vw, 36px);
  font-weight: 700; line-height: 1.2; margin-bottom: 18px; color: var(--white);
}
.product-row-txt h2 .accent { color: var(--blue); font-style: italic; }
.product-row-txt p {
  font-family: 'Lora', Georgia, serif; font-size: 15px; color: var(--blue); line-height: 1.85;
}

/* ══════════════════════════════════════════
   PROSE (about page story)
══════════════════════════════════════════ */
.prose-section {
  max-width: 1320px; margin: 0 auto; padding: 80px 52px;
}
.prose-section h2 {
  font-family: 'Lora', Georgia, serif; font-size: clamp(28px, 4vw, 40px);
  font-weight: 700; margin-bottom: 24px; color: var(--white); line-height: 1.2;
}
.prose-section h2 .accent { color: var(--blue); font-style: italic; }
.prose-section p {
  font-family: 'Lora', Georgia, serif; font-size: 16px;
  color: var(--blue); line-height: 1.85; margin-bottom: 24px; max-width: 780px;
}
.prose-section p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════════
   TEAM
══════════════════════════════════════════ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.team-card { text-align: center; }
.team-card h3 { font-family: 'Lora', Georgia, serif; font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.team-card .team-role { font-family: 'Lora', Georgia, serif; font-size: 14px; color: var(--blue); font-style: italic; margin-bottom: 12px; }
.team-card .team-link {
  font-family: 'Lora', Georgia, serif; font-size: 12px; color: var(--blue);
  text-decoration: none; transition: color 0.2s; display: inline-flex; align-items: center; gap: 5px;
}
.team-card .team-link:hover { color: var(--white); }
.team-card .team-link svg { width: 13px; height: 13px; fill: currentColor; }

/* ══════════════════════════════════════════
   VALUES GRID
══════════════════════════════════════════ */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card { padding: 32px; border: 1px solid var(--border); transition: border-color 0.3s, transform 0.3s; }
.value-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.value-card h3 { font-family: 'Lora', Georgia, serif; font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--white); }
.value-card p { font-family: 'Lora', Georgia, serif; font-size: 14px; color: var(--blue); line-height: 1.75; }

/* ══════════════════════════════════════════
   COMPARISON TABLE
══════════════════════════════════════════ */
.comparison-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.comparison-table {
  width: 100%; border-collapse: collapse; font-family: 'Lora', Georgia, serif; font-size: 14px; min-width: 640px;
}
.comparison-table th, .comparison-table td {
  padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--border);
}
.comparison-table thead th {
  font-family: 'Lora', Georgia, serif; font-size: 13px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--blue); font-weight: 600;
}
.comparison-table thead th:first-child { color: var(--white); }
.comparison-table tbody td { color: var(--blue); font-family: 'Lora', Georgia, serif; }
.comparison-table tbody td:first-child { color: var(--white); font-weight: 700; }
.comparison-table .highlight { color: var(--white); font-weight: 700; }
.comparison-table .col-oneauris { background: rgba(91,164,207,0.06); }

/* ══════════════════════════════════════════
   FAQ ACCORDION
══════════════════════════════════════════ */
.faq-list { max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; color: var(--white);
  font-family: 'Lora', Georgia, serif; font-size: 17px; font-weight: 600;
  text-align: left; padding: 22px 0; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center; gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--blue); }
.faq-q::after {
  content: '+'; font-family: 'Lora', Georgia, serif; font-size: 22px; color: var(--blue);
  transition: transform 0.3s; flex-shrink: 0;
}
.faq-item.open .faq-q::after { content: '\2212'; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-inner {
  padding: 0 0 22px; font-family: 'Lora', Georgia, serif;
  font-size: 15px; color: var(--blue); line-height: 1.85;
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact-layout {
  display: flex; gap: clamp(40px, 6vw, 100px);
}
.contact-info { flex: 0 0 40%; }
.contact-info h2 {
  font-family: 'Lora', Georgia, serif; font-size: clamp(24px, 3vw, 36px);
  font-weight: 700; line-height: 1.2; margin-bottom: 16px; color: var(--white);
}
.contact-info > p {
  font-family: 'Lora', Georgia, serif; font-size: 16px;
  color: var(--blue); line-height: 1.85; max-width: 400px;
}
.contact-meta {
  margin-top: 32px; display: flex; flex-direction: column; gap: 8px;
}
.contact-meta a, .contact-meta span {
  font-family: 'Lora', Georgia, serif; font-size: 14px; color: var(--blue); transition: color 0.2s;
}
.contact-meta a:hover { color: var(--white); }
.contact-socials { display: flex; gap: 24px; margin-top: 16px; }
.contact-socials a {
  font-family: 'Lora', Georgia, serif; font-size: 13px; color: var(--blue); transition: color 0.2s;
}
.contact-socials a:hover { color: var(--white); }

.contact-form { flex: 1; max-width: 480px; }
.contact-form .field { margin-bottom: 22px; display: flex; flex-direction: column; gap: 8px; }
.contact-form label {
  font-family: 'Lora', Georgia, serif; font-size: 12px; letter-spacing: 0.1em;
  color: var(--blue); text-transform: uppercase;
}
.contact-form input, .contact-form select, .contact-form textarea {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(91,164,207,0.3);
  color: var(--white); padding: 14px 18px; font-family: 'Lora', Georgia, serif; font-size: 14px;
  width: 100%; outline: none; transition: border-color 0.3s; resize: vertical;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--blue); opacity: 0.5; }
.contact-form select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.contact-form select option { background: var(--navy); color: var(--white); }
.form-disc {
  font-family: 'Lora', Georgia, serif; font-size: 12px; color: var(--blue); opacity: 0.6;
  margin-top: 12px; line-height: 1.6;
}
.form-disc a { text-decoration: underline; transition: color 0.2s; }
.form-disc a:hover { color: var(--white); }
.form-msg {
  font-family: 'Lora', Georgia, serif; font-size: 14px;
  margin-top: 12px; line-height: 1.6;
}
.form-success { color: #5ba4cf; }
.form-error { color: #e06c60; }

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
.cta-section {
  text-align: center;
  max-width: 1320px; margin: 0 auto; padding: 100px 52px;
}
.cta-section h2 {
  font-family: 'Lora', Georgia, serif; font-size: clamp(28px, 4vw, 40px);
  font-weight: 700; line-height: 1.2; margin-bottom: 20px; color: var(--white);
}
.cta-section h2 .accent { color: var(--blue); font-style: italic; }
.cta-section p {
  font-family: 'Lora', Georgia, serif; font-size: 16px;
  color: var(--blue); max-width: 520px; margin: 0 auto 36px; line-height: 1.85;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border); padding: 36px 52px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-family: 'Lora', Georgia, serif; font-size: 13px; color: var(--blue); }
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-family: 'Lora', Georgia, serif; font-size: 13px;
  color: var(--blue); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1200px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .features-grid, .beta-cards, .security-grid { grid-template-columns: 1fr 1fr; }
  .proof-items { grid-template-columns: 1fr 1fr; }
  .hero, .section, .full-width-section .inner, .page-hero, .prose-section { padding-left: 32px; padding-right: 32px; }
  .product-row, .product-row.flip { flex-direction: column; padding-left: 32px; padding-right: 32px; }
  .product-row-txt { flex: none; max-width: 600px; }
  .contact-layout { flex-direction: column; }
  .contact-info { flex: none; }
  .contact-form { max-width: 100%; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .hero, .section, .full-width-section .inner, .page-hero, .prose-section, .product-row { padding-left: 24px; padding-right: 24px; }
  .hero h1 { font-size: clamp(28px, 9vw, 44px); }
  .hero-form { flex-direction: column; align-items: center; }
  .hero-form .field { width: 100%; }
  .hero-form input { width: 100%; }
  .hero-form button { width: 100%; text-align: center; }
  .hero-stats, .features-grid, .beta-cards, .security-grid, .proof-items { grid-template-columns: 1fr; }
  .team-grid, .values-grid { grid-template-columns: 1fr; }
  footer { padding: 24px; flex-direction: column; gap: 16px; text-align: center; }
}
