/* ============================================================
   RIZEON AI — STYLE SHEET
   Minimalist black & white, premium, animated
   ============================================================ */

/* -------- RESET & BASE -------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:  #fafaf8;
  --off-white: #f3f2ef;
  --black:  #0a0a0a;
  --near-black: #111110;
  --grey-100: #e8e7e3;
  --grey-200: #d0cfc9;
  --grey-400: #999890;
  --grey-600: #555450;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background-color: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font-family: var(--font-sans); cursor: pointer; border: none; background: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.desktop-br { display: block; }

/* -------- SCROLL REVEAL -------- */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease-out) var(--delay, 0s),
              transform 0.75s var(--ease-out) var(--delay, 0s);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger-1 { --delay: 0.05s; }
.stagger-2 { --delay: 0.15s; }
.stagger-3 { --delay: 0.25s; }

/* -------- NAVIGATION -------- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  border-color: var(--grey-100);
  box-shadow: 0 1px 24px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 30px; height: 30px;
  background: var(--black);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border-radius: 5px;
  flex-shrink: 0;
}
.logo-mark.sm { width: 26px; height: 26px; font-size: 0.75rem; }
.logo-text { font-weight: 600; letter-spacing: -0.02em; }
.logo-text em { font-style: italic; font-family: var(--font-serif); font-weight: 700; font-size: 1.05em; }
.logo-slash { color: var(--grey-400); margin: 0 1px; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey-600);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: var(--black);
  transition: width 0.25s var(--ease-out);
}
.nav-link:hover { color: var(--black); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--black);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1.2rem;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s var(--ease-spring);
  letter-spacing: 0.01em;
}
.nav-cta:hover { background: var(--near-black); transform: scale(1.03); }
.cta-arrow { font-size: 0.9rem; transition: transform 0.2s; }
.nav-cta:hover .cta-arrow { transform: translate(2px, -2px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--grey-100);
  padding: 1rem 2rem 1.5rem;
  gap: 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile-link {
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--grey-100);
  color: var(--grey-600);
  transition: color 0.2s;
}
.nav-mobile-link:hover { color: var(--black); }
.nav-mobile-cta { color: var(--black); font-weight: 700; border: none; margin-top: 0.5rem; }

/* -------- TICKER -------- */
.ticker-wrapper {
  background: var(--black);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  animation: ticker 28s linear infinite;
  will-change: transform;
}
.ticker-track span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}
.ticker-dot { color: #555 !important; font-size: 0.6rem !important; }

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-wrapper:hover .ticker-track { animation-play-state: paused; }

/* -------- HERO -------- */
.section-hero {
  position: relative;
  padding: 148px 0 100px;
  overflow: hidden;
  background: var(--white);
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grey-100) 1px, transparent 1px),
    linear-gradient(90deg, var(--grey-100) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
  opacity: 0.45;
  pointer-events: none;
}
.hero-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
}
.hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-600);
  background: var(--off-white);
  border: 1px solid var(--grey-100);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  margin-bottom: 2.5rem;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--black);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.hero-headline {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.08em;
  margin-bottom: 1.75rem;
}
.hero-headline span { display: block; }
.italic-word {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  color: var(--black);
}
.underline-word {
  position: relative;
  display: inline-block;
}
.underline-word::after {
  content: '';
  position: absolute;
  bottom: 0.04em;
  left: 0; right: 0;
  height: 4px;
  background: var(--black);
  border-radius: 2px;
  transform-origin: left;
  animation: underline-grow 0.8s var(--ease-out) 0.6s both;
}
@keyframes underline-grow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--grey-600);
  line-height: 1.7;
  margin-bottom: 2.75rem;
  font-weight: 400;
}
.italic-accent { font-style: italic; font-family: var(--font-serif); font-weight: 700; color: var(--black); }

/* Hero form */
.hero-form { max-width: 680px; margin: 0 auto; }
.form-fields {
  display: flex;
  gap: 0;
  border: 1.5px solid var(--grey-200);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--white);
}
.field-wrap { flex: 1; position: relative; }
.field-wrap + .field-wrap { border-left: 1.5px solid var(--grey-200); }
.field-wrap input {
  width: 100%;
  padding: 1rem 1.1rem;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  background: transparent;
  border: none;
  outline: none;
  color: var(--black);
}
.field-wrap input::placeholder { color: var(--grey-400); }
.field-wrap input:focus { background: var(--off-white); }
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--black);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 1rem;
  border-radius: 6px;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.2s var(--ease-spring), box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.btn-primary:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.btn-primary:active { transform: translateY(0); }
.btn-arrow { font-size: 1rem; transition: transform 0.2s; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }
.btn-large { padding: 1.15rem 2rem; font-size: 1rem; border-radius: 8px; width: auto; }

.form-note {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-top: 0.75rem;
  text-align: center;
}

/* -------- SECTION SHARED -------- */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--grey-400);
  margin-bottom: 1.5rem;
}
.section-headline {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 1rem;
}

/* -------- PAIN SECTION -------- */
.section-pain {
  padding: 100px 0 90px;
  background: var(--white);
}
.pain-header {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  margin-bottom: 3.5rem;
}
.pain-title-col { flex: 0 0 auto; max-width: 480px; }
.pain-desc-col { flex: 1; padding-top: 1.5rem; }
.pain-desc-col p { font-size: 1rem; color: var(--grey-600); line-height: 1.75; }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25px;
  border: 1.25px solid var(--grey-200);
  border-radius: 8px;
  overflow: hidden;
}
.pain-card {
  background: var(--white);
  padding: 2rem 1.75rem;
  border-right: 1.25px solid var(--grey-200);
  transition: background 0.25s;
  cursor: default;
}
.pain-card:last-child { border-right: none; }
.pain-card:hover { background: var(--off-white); }
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.card-icon {
  width: 36px; height: 36px;
  border: 1.25px solid var(--grey-200);
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  color: var(--black);
  transition: background 0.2s, border-color 0.2s;
}
.pain-card:hover .card-icon { background: var(--black); color: var(--white); border-color: var(--black); }
.card-num {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--grey-400);
}
.card-title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.card-text {
  font-size: 0.875rem;
  color: var(--grey-600);
  line-height: 1.65;
}

/* -------- SOLUTION SECTION -------- */
.section-solution {
  padding: 100px 0 90px;
  background: var(--near-black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section-solution::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.solution-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 2.5rem;
}
.solution-headline { color: var(--white); max-width: 540px; }
.section-solution .italic-word { color: var(--white); }
.solution-desc {
  max-width: 320px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  padding-top: 0.5rem;
  flex-shrink: 0;
}

.tabs-row {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 2rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tabs-row::-webkit-scrollbar {
  display: none;
}
.tab-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.25rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.55);
  background: transparent;
  transition: all 0.25s var(--ease-out);
  letter-spacing: 0.01em;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
.tab-pill:hover {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.tab-pill.active {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  font-weight: 700;
}

/* Tab panels */
.tab-panels { position: relative; }
.tab-panel {
  border: 1.25px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
  pointer-events: none;
  position: absolute;
  width: 100%;
  top: 0;
}
.tab-panel.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  position: relative;
}
.panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 300px;
}
.panel-left {
  padding: 2.5rem 2.5rem;
  border-right: 1.25px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.panel-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
}
.panel-title {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
}
.panel-hook {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  border: none;
  padding: 0;
  margin-top: auto;
}
.panel-right {
  padding: 0;
}
.feature-list { height: 100%; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 2.5rem;
  border-bottom: 1.25px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}
.feature-item:last-child { border-bottom: none; }
.feature-item:hover { background: rgba(255,255,255,0.04); }
.feature-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
  margin-top: 4px;
  flex-shrink: 0;
  min-width: 20px;
}
.feature-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}
.feature-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* -------- PROCESS SECTION -------- */
.section-process {
  padding: 100px 0 90px;
  background: var(--off-white);
}
.process-header { margin-bottom: 3.5rem; }
.process-title-col { max-width: 500px; }
.process-desc {
  font-size: 1rem;
  color: var(--grey-600);
  line-height: 1.7;
  max-width: 420px;
  margin-top: 1rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.process-step {}
.step-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-400);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--grey-200);
  margin-bottom: 1rem;
}
.step-card {
  background: var(--white);
  border: 1.25px solid var(--grey-200);
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s, border-color 0.2s;
  cursor: default;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  border-color: var(--grey-400);
}
.step-icon {
  width: 42px; height: 42px;
  background: var(--black);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  margin-bottom: 1.25rem;
}
.step-title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.step-text {
  font-size: 0.875rem;
  color: var(--grey-600);
  line-height: 1.65;
}

/* -------- CONTACT SECTION -------- */
.section-contact {
  padding: 120px 0 130px;
  background: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-contact::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,0,0,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.contact-container { position: relative; z-index: 2; }
.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-600);
  background: var(--off-white);
  border: 1px solid var(--grey-100);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  margin-bottom: 2rem;
}
.contact-headline {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 1.25rem;
}
.contact-sub {
  font-size: 1rem;
  color: var(--grey-600);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.contact-form { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.contact-fields {
  display: flex;
  gap: 0;
  border: 1.5px solid var(--grey-200);
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  background: var(--white);
}
.contact-field-wrap { flex: 1; }
.contact-field-wrap + .contact-field-wrap { border-left: 1.5px solid var(--grey-200); }
.contact-field-wrap input {
  width: 100%;
  padding: 1rem 1.1rem;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  background: transparent;
  border: none;
  outline: none;
  color: var(--black);
}
.contact-field-wrap input::placeholder { color: var(--grey-400); }
.contact-field-wrap input:focus { background: var(--off-white); }

/* -------- FOOTER -------- */
.site-footer {
  background: var(--near-black);
  padding: 3rem 2rem;
  text-align: center;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-logo .logo-text { color: var(--white); font-size: 1rem; }
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-note {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* -------- TOAST -------- */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--black);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: 100px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s var(--ease-spring);
  z-index: 999;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* -------- CURSOR FOLLOWER -------- */
.cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--black);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s var(--ease-spring), height 0.3s var(--ease-spring), opacity 0.3s;
  will-change: left, top;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(0,0,0,0.25);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: left 0.12s var(--ease-out), top 0.12s var(--ease-out), width 0.3s var(--ease-spring), height 0.3s var(--ease-spring), opacity 0.3s, border-color 0.3s;
  will-change: left, top;
}

/* -------- RESPONSIVE -------- */
@media (max-width: 900px) {
  .nav-right { display: none; }
  .nav-hamburger { display: flex; }
  .desktop-br { display: none; }

  .hero-headline { font-size: clamp(2.4rem, 8vw, 3.5rem); }

  .pain-header { flex-direction: column; gap: 1.5rem; }
  .pain-title-col { max-width: 100%; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-card { border-right: none; border-bottom: 1.25px solid var(--grey-200); }
  .pain-card:last-child { border-bottom: none; }

  .solution-header { flex-direction: column; gap: 1.25rem; }
  .solution-desc { max-width: 100%; }
  .panel-inner { grid-template-columns: 1fr; }
  .panel-left { border-right: none; border-bottom: 1.25px solid rgba(255,255,255,0.1); }

  .process-grid { grid-template-columns: 1fr; }

  .form-fields { flex-direction: column; border-radius: 6px; }
  .field-wrap + .field-wrap { border-left: none; border-top: 1.5px solid var(--grey-200); }
  .contact-fields { flex-direction: column; }
  .contact-field-wrap + .contact-field-wrap { border-left: none; border-top: 1.5px solid var(--grey-200); }
  .btn-large { width: 100%; }

  .cursor-dot, .cursor-ring { display: none; }
}

@media (max-width: 640px) {
  .section-hero { padding: 130px 0 80px; }
  .section-pain, .section-solution, .section-process, .section-contact { padding: 72px 0 64px; }
  .container { padding: 0 1.25rem; }
}
