@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;700;900&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --color-primary: #FF3B30;
  --color-primary-hover: #E32A20;
  --color-secondary: #FF9500;
  --color-text: #111111;
  --color-text-light: #555555;
  --color-background: #FDFCFB;
  --color-surface: #FFFFFF;
  --color-border: #EAEAEA;
  --color-success: #34C759;
  
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Manrope', sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.03);
  --shadow-md: 0 12px 32px rgba(0,0,0,0.06);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.08);
  --shadow-button: 0 8px 24px rgba(255, 59, 48, 0.25);
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --section-padding: 100px;
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
.hidden { display: none !important; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-background);
  background-image: radial-gradient(circle at top, rgba(255, 59, 48, 0.05) 0%, transparent 400px);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }

/* Typography */
h1, h2, h3, h4, .eyebrow {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.1;
  color: var(--color-text);
}

.eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 1rem;
  background: rgba(255, 59, 48, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 99px;
}

/* Layout Containers */
.site-header, .site-footer, .hero, .section, .workflow-band, 
.pilot-section, .connect-band, .pricing-section, .faq-section, 
.app-panel, .storefront, .legal-page, .contact-page, .subhero, 
.restaurant-grid, .comparison-section, .signal-strip {
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
}

/* Header */
.site-header {
  min-height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 1rem;
  position: relative;
  z-index: 100;
}

.brand img {
  width: 120px;
  height: auto;
  transition: transform 0.2s ease;
}
.brand:hover img {
  transform: scale(1.05);
}

.main-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-light);
  position: relative;
}

.main-nav a:hover, .main-nav a.active {
  color: var(--color-text);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition);
}

.main-nav a:hover::after, .main-nav a.active::after {
  width: 100%;
}

.header-cta {
  background-color: var(--color-text);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.header-cta:hover {
  background-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-button);
}

/* Buttons */
.button, button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.button.primary, button[type="submit"] {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  box-shadow: var(--shadow-button);
}

.button.primary:hover, button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 59, 48, 0.35);
}

.button.secondary {
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.button.secondary:hover {
  background: var(--color-background);
  border-color: var(--color-text);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  padding: 6rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 3rem;
}

.hero-proof span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-light);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 0.5rem 1rem;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-proof span::before {
  content: '✓';
  color: var(--color-success);
  font-weight: bold;
}

/* Phone Mockup Preview */
.product-preview {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.product-preview::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 149, 0, 0.15) 0%, transparent 60%);
  z-index: -1;
}

.phone-shell {
  width: 320px;
  background: var(--color-surface);
  border-radius: 40px;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg), inset 0 0 0 6px #F0F0F0, inset 0 0 0 8px #111;
  position: relative;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 1.5rem;
}

.phone-top img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.phone-top strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  display: block;
}

.phone-top span {
  font-size: 0.85rem;
  color: var(--color-success);
  font-weight: 600;
}

.menu-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.menu-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.menu-item.featured {
  background: linear-gradient(135deg, rgba(255,59,48,0.05), transparent);
  border-color: rgba(255,59,48,0.2);
}

.menu-item strong {
  font-family: var(--font-display);
  display: block;
  font-size: 1.1rem;
}

.menu-item span {
  font-size: 0.8rem;
  color: var(--color-text-light);
  display: block;
  margin: 0.25rem 0 0.5rem;
}

.menu-item b {
  color: var(--color-primary);
  font-size: 1.1rem;
  font-weight: 800;
}

.checkout-card {
  background: var(--color-text);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-top: 1.5rem;
  box-shadow: var(--shadow-md);
}

.checkout-card span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.checkout-card strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  display: block;
  margin: 0.25rem 0;
}

.checkout-card small {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

.floating-metric {
  position: relative;
  background: var(--color-surface);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  animation: float 7s ease-in-out infinite reverse;
  text-align: center;
  width: 100%;
  max-width: 320px;
}

.floating-metric span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.floating-metric strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-primary);
  display: block;
}

/* Signal Strip */
.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: var(--section-padding);
}

.signal-strip div {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.signal-strip div:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 59, 48, 0.2);
}

.signal-strip strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  display: block;
  margin-bottom: 0.5rem;
}

.signal-strip span {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* Sections Global */
.section {
  padding-block: var(--section-padding);
}

.section-heading, .pricing-section > div:first-child {
  margin-bottom: 4rem;
  max-width: 600px;
}

.section-heading h2, .pricing-section h2, .workflow-band h2, .pilot-section h2, .connect-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
}

.section.split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

/* Insight List */
.insight-list {
  display: grid;
  gap: 2rem;
}

.insight-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.insight-list article:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.insight-list article .insight-number {
  width: 48px;
  height: 48px;
  background: rgba(255, 59, 48, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
}

.insight-list h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.insight-list p {
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.6;
}

/* Workflow Band */
.workflow-band {
  padding-block: var(--section-padding);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-background) 100%);
}

.workflow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.workflow div {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.workflow div:hover {
  border-color: var(--color-primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.workflow b {
  width: 40px;
  height: 40px;
  background: var(--color-text);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.workflow strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  display: block;
  margin-bottom: 1rem;
}

.workflow span {
  color: var(--color-text-light);
  line-height: 1.6;
}

/* Pilot Section */
.pilot-section {
  padding-block: var(--section-padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pilot-card {
  background: var(--color-surface);
  padding: 3rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pilot-card-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1.5rem;
}

.pilot-logo-wrap {
  width: 80px;
  height: 80px;
  background: var(--color-background);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  padding: 0.5rem;
}

.pilot-logo-wrap img {
  width: 100%;
  height: auto;
}

.pilot-card-header h3 {
  font-size: 1.5rem;
  margin: 0;
  color: var(--color-text);
}

.pilot-features {
  display: grid;
  gap: 1.5rem;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 59, 48, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-text {
  display: flex;
  flex-direction: column;
}

.feature-text strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-text);
}

.feature-text span {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* Connect Band */
.connect-band {
  background: var(--color-text);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 5rem;
  margin-block: var(--section-padding);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.connect-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 59, 48, 0.4) 0%, transparent 70%);
  border-radius: 50%;
}

.connect-band h2 {
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.connect-band p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.connect-band .button {
  position: relative;
  z-index: 2;
}

/* Pricing */
.pricing-section {
  padding-block: var(--section-padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.price-panel {
  background: var(--color-surface);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.price-panel::before {
  content: 'Simple et sans risque';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.85rem;
}

.price-panel span {
  font-weight: 700;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}

.price-panel strong {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--color-primary);
  display: block;
  margin: 1rem 0;
  line-height: 1;
}

.price-panel p {
  color: var(--color-text-light);
  margin: 0;
}

/* FAQ */
.faq-section {
  padding-block: var(--section-padding);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.faq-grid article {
  background: var(--color-surface);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-grid article:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.faq-grid h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.faq-grid p {
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.6;
}

/* Subhero (for subpages) */
.subhero {
  padding: 6rem 0 4rem;
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 4rem;
  align-items: center;
}

.subhero h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin-bottom: 1.5rem;
}

.subhero-panel {
  background: var(--color-surface);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.subhero-panel strong {
  color: var(--color-primary);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  display: block;
}

.subhero-panel span {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  display: block;
  margin: 1rem 0;
  line-height: 1;
}

/* Restaurant Grid */
.restaurant-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-block: var(--section-padding);
}

.restaurant-grid article {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}
.restaurant-grid article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.restaurant-grid h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.restaurant-grid p {
  color: var(--color-text-light);
  margin: 0;
}

/* Contact Page */
.contact-page {
  padding: var(--section-padding) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-intro h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
}

.contact-details {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  margin-top: 3rem;
  display: grid;
  gap: 1rem;
}

.contact-details a {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.1rem;
}

.contact-form {
  background: var(--color-surface);
  padding: 3rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 1.5rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

label {
  display: grid;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text);
}

input, select, textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-background);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(255, 59, 48, 0.1);
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-weight: 500;
  color: var(--color-text-light);
  cursor: pointer;
}

.checkbox-field input {
  width: 20px;
  height: 20px;
  margin-top: 0.25rem;
  accent-color: var(--color-primary);
}

/* Footer */
.site-footer {
  padding: 5rem 0;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4rem;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.footer-brand span {
  color: var(--color-text-light);
  max-width: 300px;
  display: block;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-col strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--color-text-light);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--color-primary);
  transform: translateX(2px);
}

/* Legal Pages */
.legal-page {
  padding: var(--section-padding) 0;
  max-width: 800px;
}

.legal-page h1 {
  font-size: 3rem;
  margin-bottom: 3rem;
}

.legal-page h2 {
  font-size: 1.75rem;
  margin: 3rem 0 1.5rem;
}

.legal-page p {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Stripe Connect signup */
.signup-shell {
  width: min(1180px, 100% - 48px);
  margin-inline: auto;
  padding: 4.5rem 0 6rem;
}

.signup-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 3rem;
  align-items: end;
  margin-bottom: 2rem;
}

.signup-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  max-width: 760px;
  margin-bottom: 1.25rem;
}

.signup-hero p {
  max-width: 720px;
  color: var(--color-text-light);
  font-size: 1.15rem;
  margin: 0;
}

.signup-card {
  background: #111111;
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: grid;
  gap: 0.9rem;
  box-shadow: var(--shadow-md);
}

.signup-card img {
  width: 104px;
  height: auto;
  background: #ffffff;
  border-radius: var(--radius-sm);
  padding: 0.6rem;
}

.signup-card strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.signup-card span {
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
}

.signup-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.signup-steps > div {
  min-height: 132px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1rem;
  row-gap: 0.2rem;
  align-content: start;
  box-shadow: var(--shadow-sm);
}

.signup-steps b {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 59, 48, 0.1);
  color: var(--color-primary);
  font-family: var(--font-display);
}

.signup-steps span {
  font-weight: 800;
  align-self: center;
}

.signup-steps small {
  grid-column: 2;
  color: var(--color-text-light);
  line-height: 1.45;
}

.signup-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: 1.25rem;
  align-items: start;
  justify-content: center;
}

.signup-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2rem;
  display: grid;
  gap: 1.35rem;
}

.signup-form-intro {
  display: grid;
  gap: 0.55rem;
}

.signup-form .mode-mini-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--color-secondary);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.signup-form h2 {
  font-size: 1.45rem;
  margin: 0;
}

.signup-form p {
  color: var(--color-text-light);
  margin: 0;
}

.signup-form small {
  color: var(--color-text-light);
  font-weight: 500;
}

.signup-assurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.signup-assurance span {
  min-height: 64px;
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #f7faf7;
  color: var(--color-text);
  padding: 0.85rem;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.25;
}

.signup-submit-row {
  display: grid;
  gap: 0.75rem;
}

.signup-form [data-submit-button] {
  width: 100%;
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: var(--shadow-button);
}

.signup-form [data-submit-button]:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(217, 67, 47, 0.26);
}

.signup-form [data-submit-button]:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
  box-shadow: none;
}

.signup-submit-row small {
  text-align: center;
}

/* Stripe demo app screens */
.app-panel,
.storefront {
  padding: 4.5rem 0 6rem;
}

.app-panel.narrow {
  max-width: 760px;
}

.app-panel > .section-heading {
  max-width: 820px;
  margin-bottom: 2rem;
}

.app-panel > .section-heading h1,
.storefront h1 {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  margin-bottom: 1rem;
}

.app-panel > .section-heading p,
.storefront-header p {
  color: var(--color-text-light);
  font-size: 1.08rem;
  margin: 0;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin: 2rem 0;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: start;
}

.form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1.75rem;
  display: grid;
  gap: 1rem;
}

.form-card h2 {
  font-size: 1.35rem;
}

.form-card p {
  color: var(--color-text-light);
  margin: 0;
}

.guide-card {
  min-height: 100%;
  align-content: start;
}

.inline-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: end;
}

.inline-form label {
  max-width: 96px;
}

.inline-form button {
  min-height: 54px;
}

.storefront-header {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.storefront-header img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.product-card,
.empty-state {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem;
}

.product-card {
  display: grid;
  gap: 1rem;
}

.product-media {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background: rgba(255, 59, 48, 0.1);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
}

.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.product-card p,
.empty-state p {
  color: var(--color-text-light);
  margin: 0 0 0.75rem;
}

.product-card strong {
  display: inline-block;
  font-size: 1.25rem;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .hero, .section.split, .pilot-section, .pricing-section, .contact-page, .subhero, .signup-hero, .signup-grid, .two-column {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero {
    text-align: center;
  }
  
  .hero p {
    margin-inline: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-proof {
    justify-content: center;
  }
  
  .product-preview {
    margin-top: 2rem;
  }
  
  .floating-metric {
    position: relative;
    width: 100%;
    margin-top: 0;
  }
  
  .connect-band {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 3rem;
  }
  
  .connect-band .button {
    width: 100%;
  }

  .signup-hero {
    align-items: start;
  }

  .signup-card {
    max-width: 460px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .signal-strip, .workflow {
    grid-template-columns: 1fr;
  }
  
  .restaurant-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .field-row {
    grid-template-columns: 1fr;
  }

  .signup-shell {
    width: min(100% - 32px, 1180px);
    padding: 3rem 0 4rem;
  }

  .signup-steps {
    grid-template-columns: 1fr;
  }

  .signup-assurance {
    grid-template-columns: 1fr;
  }

  .signup-assurance span {
    min-height: auto;
  }

  .status-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .storefront-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .restaurant-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 2rem;
  }

  .signup-form,
  .signup-card,
  .form-card {
    padding: 1.25rem;
  }
}

/* App Panel and status pill */
.status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.status-grid > div {
  background: var(--color-surface);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.pill {
  display: inline-flex;
  padding: 0.5rem 1rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.85rem;
  background: var(--color-background);
  color: var(--color-text);
  margin-top: 0.5rem;
}

.pill.success {
  background: rgba(52, 199, 89, 0.1);
  color: var(--color-success);
}

.pill.warning {
  background: rgba(255, 149, 0, 0.1);
  color: var(--color-secondary);
}

/* Error Forms */
.form-error {
  background: rgba(255, 59, 48, 0.1);
  color: var(--color-primary);
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

/* 2026 design refresh */
:root {
  --color-primary: #d9432f;
  --color-primary-hover: #b93225;
  --color-secondary: #0f766e;
  --color-accent: #f1b642;
  --color-text: #171412;
  --color-text-light: #5f6670;
  --color-background: #f5f7f4;
  --color-surface: #fffefa;
  --color-border: #dfe5df;
  --color-success: #16803c;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 8px;
  --radius-xl: 8px;
  --shadow-sm: 0 1px 2px rgba(23, 20, 18, 0.05), 0 8px 24px rgba(23, 20, 18, 0.05);
  --shadow-md: 0 12px 36px rgba(23, 20, 18, 0.08);
  --shadow-lg: 0 24px 60px rgba(23, 20, 18, 0.12);
  --shadow-button: 0 10px 26px rgba(217, 67, 47, 0.24);
  --transition: 180ms ease;
  --section-padding: 88px;
}

body {
  background-color: var(--color-background);
  background-image: none;
  overflow-x: clip;
}

h1,
h2,
h3,
h4,
.eyebrow {
  letter-spacing: 0;
}

p {
  color: var(--color-text-light);
}

.eyebrow {
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--color-secondary);
  font-size: 0.76rem;
  letter-spacing: 0;
}

.site-header {
  width: 100%;
  min-height: 76px;
  padding: 0.75rem max(24px, calc((100vw - 1200px) / 2));
  border-bottom: 1px solid rgba(23, 20, 18, 0.08);
  background: #fffefa;
  position: sticky;
  top: 0;
}

.brand img {
  width: 104px;
  transition: none;
}

.brand:hover img {
  transform: none;
}

.main-nav {
  gap: 0.25rem;
  padding: 0.25rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.main-nav a {
  padding: 0.48rem 0.82rem;
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--color-text-light);
  transition: background-color 120ms ease, color 120ms ease, box-shadow 120ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  background: #ffffff;
  color: var(--color-text);
  box-shadow: 0 1px 2px rgba(23, 20, 18, 0.08);
}

.main-nav a::after {
  display: none;
}

.header-cta,
.button,
button {
  min-height: 48px;
  border-radius: var(--radius-md);
}

.header-cta {
  padding: 0.72rem 1.1rem;
  background: var(--color-text);
  color: #ffffff;
  box-shadow: none;
}

.header-cta:hover {
  background: var(--color-primary);
  transform: none;
  box-shadow: var(--shadow-button);
}

.button,
button {
  padding: 0.92rem 1.18rem;
  gap: 0.5rem;
  font-size: 0.98rem;
}

.button.primary,
button[type="submit"] {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: var(--shadow-button);
}

.button.primary:hover,
button[type="submit"]:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(217, 67, 47, 0.26);
}

.button.secondary {
  background: #ffffff;
  color: var(--color-text);
  border-color: rgba(23, 20, 18, 0.14);
  box-shadow: none;
}

.button.secondary:hover {
  background: #f7faf7;
  border-color: rgba(23, 20, 18, 0.28);
  transform: translateY(-1px);
}

.hero {
  width: 100%;
  margin: 0;
  min-height: min(690px, calc(100vh - 76px));
  padding: 74px max(24px, calc((100vw - 1200px) / 2)) 82px;
  display: block;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
  background:
    linear-gradient(135deg, rgba(255, 254, 250, 0.96), rgba(245, 247, 244, 0.9) 48%, rgba(222, 239, 234, 0.92));
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 20, 18, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 20, 18, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.58;
  pointer-events: none;
}

.hero-copy {
  width: min(590px, 100%);
  padding-top: 24px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 11ch;
  margin-bottom: 1.25rem;
  font-size: 4.35rem;
  line-height: 0.96;
  font-weight: 900;
}

.hero p {
  max-width: 560px;
  margin-bottom: 2rem;
  color: #454a50;
  font-size: 1.16rem;
  line-height: 1.65;
}

.hero-actions {
  gap: 0.75rem;
}

.hero-proof {
  width: min(620px, 100%);
  gap: 0.55rem;
  margin-top: 2rem;
}

.hero-proof span {
  border-radius: var(--radius-md);
  padding: 0.56rem 0.72rem;
  background: rgba(255, 254, 250, 0.78);
  border-color: rgba(23, 20, 18, 0.1);
  color: #363a40;
  box-shadow: 0 1px 2px rgba(23, 20, 18, 0.04);
}

.hero-proof span::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 0 3px rgba(22, 128, 60, 0.12);
}

.product-preview {
  width: min(44vw, 470px);
  position: absolute;
  z-index: 1;
  top: 50%;
  right: max(24px, calc((100vw - 1200px) / 2));
  transform: translateY(-50%);
  align-items: flex-end;
  gap: 1rem;
  padding-bottom: 46px;
}

.product-preview::before {
  display: none;
}

.phone-shell {
  width: min(100%, 358px);
  padding: 1.65rem 1.05rem 1.05rem;
  border: 10px solid #171412;
  border-radius: 34px;
  background: #fffefa;
  box-shadow: 0 30px 80px rgba(23, 20, 18, 0.18);
  animation: none;
}

.phone-shell::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  width: 72px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  transform: translateX(-50%);
}

.phone-top {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

.phone-top img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
}

.phone-top strong {
  font-size: 1.08rem;
}

.phone-top span {
  color: var(--color-secondary);
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem;
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: none;
}

.menu-item:hover {
  transform: none;
  box-shadow: none;
}

.menu-item.featured {
  background: #fff7ed;
  border-color: rgba(217, 67, 47, 0.25);
}

.menu-item strong {
  font-size: 1rem;
}

.menu-item b {
  color: var(--color-primary);
  font-size: 1rem;
  white-space: nowrap;
}

.checkout-card {
  border-radius: var(--radius-md);
  background: #171412;
  box-shadow: none;
}

.checkout-card strong {
  font-size: 1.55rem;
}

.floating-metric {
  width: 250px;
  margin-right: 0;
  position: absolute;
  bottom: 0;
  left: 18px;
  border-radius: var(--radius-md);
  border-color: rgba(15, 118, 110, 0.22);
  box-shadow: var(--shadow-md);
  animation: none;
  z-index: 2;
}

.floating-metric strong {
  color: var(--color-secondary);
}

.signal-strip {
  margin-top: 0;
  margin-bottom: 0;
  padding-block: 26px;
}

.signal-strip div,
.insight-list article,
.workflow div,
.pilot-card,
.price-panel,
.faq-grid article,
.subhero-panel,
.restaurant-grid article,
.contact-details,
.contact-form,
.signup-card,
.signup-steps > div,
.signup-form,
.form-card,
.product-card,
.empty-state,
.status-grid > div {
  border-radius: var(--radius-md);
}

.signal-strip div {
  padding: 1.35rem;
  background: #ffffff;
  box-shadow: none;
}

.signal-strip div:hover,
.restaurant-grid article:hover,
.faq-grid article:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.section {
  padding-block: var(--section-padding);
}

.section-heading,
.pricing-section > div:first-child {
  max-width: 660px;
  margin-bottom: 2.4rem;
}

.section-heading h2,
.pricing-section h2,
.workflow-band h2,
.pilot-section h2,
.connect-band h2 {
  font-size: 2.65rem;
  line-height: 1.04;
}

.section-heading p,
.pilot-section p,
.pricing-section p,
.subhero p,
.contact-intro p {
  font-size: 1.06rem;
  line-height: 1.7;
}

.section.split {
  gap: 4rem;
}

.insight-list {
  gap: 1rem;
}

.insight-list article {
  padding: 1.35rem;
  box-shadow: none;
}

.insight-list article:hover {
  transform: translateX(2px);
}

.insight-list article .insight-number {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: #e7f3ef;
  color: var(--color-secondary);
}

.workflow-band {
  width: 100%;
  padding: var(--section-padding) max(24px, calc((100vw - 1200px) / 2));
  border: 0;
  background: #171412;
}

.workflow-band .eyebrow {
  color: #92d6c8;
}

.workflow-band h2 {
  color: #ffffff;
}

.workflow {
  gap: 1rem;
}

.workflow div {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.workflow div:hover {
  border-color: rgba(146, 214, 200, 0.55);
  transform: translateY(-2px);
  box-shadow: none;
}

.workflow b {
  background: #92d6c8;
  color: #10231f;
  border-radius: var(--radius-md);
}

.workflow strong {
  color: #ffffff;
}

.workflow span {
  color: rgba(255, 255, 255, 0.7);
}

.pilot-section {
  gap: 3rem;
}

.pilot-card {
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.pilot-logo-wrap {
  border-radius: var(--radius-md);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: #e7f3ef;
  color: var(--color-secondary);
  font-size: 0;
  position: relative;
}

.feature-icon::before {
  content: '';
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.pilot-features .feature-row:nth-child(2) .feature-icon::before {
  width: 20px;
  height: 14px;
  border-radius: 4px;
}

.pilot-features .feature-row:nth-child(2) .feature-icon::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 2px;
  background: currentColor;
  top: 17px;
  left: 13px;
}

.pilot-features .feature-row:nth-child(3) .feature-icon::before {
  width: 21px;
  height: 13px;
  border-radius: 4px 7px 4px 4px;
}

.connect-band {
  width: 100%;
  margin: 0;
  padding: 74px max(24px, calc((100vw - 1200px) / 2));
  border-radius: 0;
  background: #0f766e;
  box-shadow: none;
}

.connect-band::before {
  display: none;
}

.connect-band .eyebrow {
  color: #d5fff4;
}

.connect-band p {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-section {
  gap: 3rem;
}

.price-panel {
  padding: 3rem 2rem;
  border: 1px solid rgba(217, 67, 47, 0.26);
  box-shadow: var(--shadow-sm);
}

.price-panel::before {
  top: 0;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  background: var(--color-secondary);
}

.price-panel strong {
  color: var(--color-primary);
  font-size: 3.45rem;
}

.subhero {
  padding: 74px 0 54px;
}

.subhero h1,
.contact-intro h1,
.legal-page h1,
.signup-hero h1,
.app-panel > .section-heading h1,
.storefront h1 {
  font-size: 3.25rem;
  line-height: 1.02;
}

.restaurant-grid {
  gap: 1rem;
}

.restaurant-grid article,
.faq-grid article {
  box-shadow: none;
}

.comparison-section {
  padding-block: var(--section-padding);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: start;
}

.comparison-section h2 {
  font-size: 2.45rem;
  line-height: 1.06;
  margin-bottom: 1rem;
}

.comparison-table {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #ffffff;
}

.comparison-table [role="row"] {
  display: grid;
  grid-template-columns: minmax(120px, 0.8fr) minmax(0, 1.2fr);
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--color-border);
}

.comparison-table [role="row"]:last-child {
  border-bottom: 0;
}

.comparison-table span {
  color: var(--color-text-light);
}

.comparison-table strong {
  color: var(--color-text);
}

.contact-page {
  gap: 3rem;
}

.contact-details {
  padding: 1.25rem;
  box-shadow: none;
}

.contact-details span {
  display: flex;
  gap: 0.65rem;
  align-items: baseline;
  color: var(--color-text-light);
}

.contact-details span::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-secondary);
  flex: 0 0 auto;
}

.contact-form {
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

input,
select,
textarea {
  border-color: rgba(23, 20, 18, 0.14);
  background: #ffffff;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.form-note,
.muted {
  color: var(--color-text-light);
  font-size: 0.92rem;
}

.legal-page {
  max-width: 820px;
}

.legal-page .lead {
  color: #3d4248;
  font-size: 1.15rem;
  line-height: 1.7;
}

.legal-warning {
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--color-primary);
  background: #fff7ed;
  color: #5f3326;
}

.signup-shell,
.app-panel,
.storefront {
  padding-top: 4rem;
}

.signup-card {
  background: #171412;
}

.product-media {
  border-radius: var(--radius-md);
  background: #e7f3ef;
  color: var(--color-secondary);
}

.site-footer {
  width: 100%;
  padding: 4rem max(24px, calc((100vw - 1200px) / 2));
  background: #fffefa;
}

body * {
  letter-spacing: 0 !important;
}

@media (max-width: 1024px) {
  :root {
    --section-padding: 72px;
  }

  .site-header {
    position: relative;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
    text-align: left;
  }

  .hero h1 {
    max-width: 720px;
    font-size: 3.6rem;
  }

  .hero p {
    margin-inline: 0;
  }

  .hero-actions,
  .hero-proof {
    justify-content: flex-start;
  }

  .product-preview {
    width: min(100%, 420px);
    margin-top: 2.5rem;
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    align-items: center;
    padding-bottom: 0;
  }

  .floating-metric {
    position: static;
    left: auto;
    bottom: auto;
    margin-right: 0;
  }

  .section-heading h2,
  .pricing-section h2,
  .workflow-band h2,
  .pilot-section h2,
  .connect-band h2 {
    font-size: 2.3rem;
  }

  .comparison-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 56px;
  }

  .site-header {
    padding-inline: 18px;
    align-items: stretch;
    gap: 1rem;
  }

  .brand {
    align-self: center;
  }

  .brand img {
    width: 92px;
  }

  .main-nav {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .main-nav a {
    white-space: nowrap;
  }

  .header-cta {
    text-align: center;
    min-height: 44px;
  }

  .hero {
    padding: 44px 18px 56px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 2.85rem;
  }

  .hero p {
    font-size: 1.02rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
  }

  .phone-shell {
    width: min(100%, 338px);
  }

  .floating-metric {
    order: -1;
    width: 100%;
    max-width: 338px;
    padding: 0.95rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
  }

  .floating-metric strong {
    font-size: 1.25rem;
    line-height: 1.1;
    white-space: nowrap;
  }

  .floating-metric span {
    line-height: 1.2;
  }

  .signal-strip {
    padding-block: 18px;
  }

  .section-heading h2,
  .pricing-section h2,
  .workflow-band h2,
  .pilot-section h2,
  .connect-band h2,
  .comparison-section h2 {
    font-size: 2rem;
  }

  .subhero h1,
  .contact-intro h1,
  .legal-page h1,
  .signup-hero h1,
  .app-panel > .section-heading h1,
  .storefront h1 {
    font-size: 2.35rem;
  }

  .workflow-band,
  .connect-band,
  .site-footer {
    padding-inline: 18px;
  }

  .connect-band {
    padding-block: 56px;
  }

  .price-panel strong {
    font-size: 2.7rem;
  }

  .comparison-table [role="row"] {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .contact-form {
    padding: 1.35rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.45rem;
  }

  .phone-shell {
    border-width: 8px;
    padding-inline: 0.82rem;
  }

  .menu-item {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .pilot-card,
  .price-panel,
  .faq-grid article,
  .contact-details,
  .contact-form {
    padding: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
