:root {
  --agn-navy: #00224f;
  --agn-navy-deep: #001633;
  --agn-gold: #c7941b;
  --agn-gold-light: #f0c454;
  --agn-green: #0d6836;
  --agn-green-deep: #064923;
  --agn-ink: #122039;
  --agn-muted: #6b778c;
  --agn-surface: #ffffff;
  --agn-soft: #f5f7f4;
  --agn-cream: #fffaf0;
  --agn-border: rgba(0, 34, 79, 0.12);
  --agn-shadow: 0 18px 50px rgba(0, 34, 79, 0.1);
  --f7-theme-color: var(--agn-green);
  --f7-theme-color-rgb: 13, 104, 54;
  --f7-theme-color-shade: #084b27;
  --f7-theme-color-tint: #128548;
  --title-color: var(--agn-ink);
  --text-color: var(--agn-muted);
  --background-color: var(--agn-surface);
  --light-gray: var(--agn-soft);
}

html.dark {
  --agn-ink: #f7f4eb;
  --agn-muted: #aeb8c7;
  --agn-surface: #061723;
  --agn-soft: #0d2631;
  --agn-cream: #152831;
  --agn-border: rgba(255, 255, 255, 0.1);
  --agn-shadow: 0 18px 55px rgba(0, 0, 0, 0.32);
  --title-color: var(--agn-ink);
  --text-color: var(--agn-muted);
  --background-color: var(--agn-surface);
  --light-gray: var(--agn-soft);
}

* { box-sizing: border-box; }
html, body, #app { min-height: 100%; }
body { background: var(--agn-surface); color: var(--agn-ink); }
button, input, textarea, select { font: inherit; }
.page, .navbar-bg, .toolbar, .panel, .popup .page { background-color: var(--agn-surface); }
.page-content { color: var(--agn-ink); }
.agn-page-content { padding-top: 8px; }
.agn-page-content > * { max-width: 1180px; margin-left: auto; margin-right: auto; }
.agn-navbar .navbar-inner { max-width: 1210px; margin: 0 auto; }
.agn-navbar-title { display: flex; align-items: center; gap: 8px; }
.agn-navbar-title img { width: 30px; height: 30px; object-fit: contain; }

.agn-eyebrow, .agn-kicker, .agn-product-body small, .agn-product-detail-copy small {
  color: var(--agn-gold);
  font-weight: 600;
  letter-spacing: .1em;
  font-size: 11px;
  text-transform: uppercase;
}

.agn-hero {
  min-height: 520px;
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 40px;
  padding: 54px 6%;
  border-radius: 28px;
  background: url('../img/company/farm-hero.jpg') center/cover no-repeat;
  box-shadow: 0 24px 70px rgba(0, 34, 79, .22);
}

.agn-hero-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(0, 22, 51, .96) 0%, rgba(0, 34, 79, .88) 51%, rgba(0, 73, 41, .45) 100%); }
.agn-hero-copy, .agn-hero-logo-card { position: relative; z-index: 2; }
.agn-hero .agn-eyebrow { color: var(--agn-gold-light); }
.agn-hero h1 { color: #fff; max-width: 650px; margin: 14px 0 18px; font-size: clamp(42px, 5.4vw, 68px); line-height: 1.02; letter-spacing: -.045em; }
.agn-hero p { color: rgba(255,255,255,.8); max-width: 680px; margin: 0; font-size: 17px; line-height: 1.65; }
.agn-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.agn-hero-actions .button { width: auto; min-width: 175px; padding: 0 22px; margin: 0; }
.agn-hero-actions .button-fill { color: var(--agn-navy); background: var(--agn-gold-light); }
.agn-hero-actions .button-outline { color: #fff; border-color: rgba(255,255,255,.66); }
.agn-hero-logo-card { justify-self: end; width: min(360px, 32vw); padding: 22px; border-radius: 28px; background: rgba(255,255,255,.92); box-shadow: 0 24px 60px rgba(0,0,0,.2); backdrop-filter: blur(12px); }
.agn-hero-logo-card img { display: block; width: 100%; }

.agn-audience-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 18px; }
.agn-audience-row span { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 16px; border: 1px solid var(--agn-border); border-radius: 14px; color: var(--agn-ink); font-weight: 500; background: var(--agn-surface); }
.agn-audience-row i { color: var(--agn-green); font-size: 21px; }

.agn-overview-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 45px; align-items: center; padding: 60px 0 34px; }
.agn-display-heading { margin: 10px 0 14px; color: var(--agn-ink); font-size: clamp(32px, 4vw, 48px); line-height: 1.08; letter-spacing: -.035em; }
.agn-overview-grid p { margin: 8px 0; }
.agn-action-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.agn-action-grid article { min-height: 110px; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; border: 1px solid var(--agn-border); border-radius: 17px; background: var(--agn-soft); }
.agn-action-grid article:nth-child(5) { grid-column: 1 / -1; min-height: 90px; background: linear-gradient(135deg, rgba(199,148,27,.12), rgba(13,104,54,.1)); }
.agn-action-grid strong { color: var(--agn-navy); font-size: 20px; }
html.dark .agn-action-grid strong { color: var(--agn-gold-light); }
.agn-action-grid span { color: var(--agn-muted); margin-top: 5px; font-size: 13px; }

.agn-text-link { display: inline-flex; align-items: center; gap: 6px; padding: 0; margin-top: 15px; color: var(--agn-green); background: transparent; border: 0; font-weight: 600; }
.agn-text-link i { font-size: 16px; }
.section-title { margin-top: 28px; }
.section-title a { color: var(--agn-green); }

.agn-product-slider { margin-top: 12px; }
.agn-product-card { height: 100%; overflow: hidden; border: 1px solid var(--agn-border); border-radius: 20px; background: var(--agn-surface); }
.agn-product-image { height: 235px; position: relative; overflow: hidden; display: grid; place-items: center; background: linear-gradient(145deg, #f7faef, #e9f3dc); }
.agn-product-image img { width: 100%; height: 100%; object-fit: cover; }
.agn-product-image span, .agn-product-detail-image span { position: absolute; left: 14px; top: 14px; padding: 6px 9px; border-radius: 7px; color: #fff; background: rgba(0,34,79,.88); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; }
.agn-product-body { padding: 20px; }
.agn-product-body h2 { color: var(--agn-ink); margin: 7px 0; font-size: 20px; line-height: 1.3; }
.agn-product-body p { min-height: 66px; margin: 0; font-size: 13px; line-height: 1.65; }
.agn-product-price { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--agn-border); }
.agn-product-price span { color: var(--agn-muted); font-size: 11px; }
.agn-product-price strong { color: var(--agn-green); font-size: 20px; }

.agn-partnership { display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: center; overflow: hidden; margin-top: 52px; border-radius: 24px; color: #fff; background: linear-gradient(140deg, var(--agn-green-deep), var(--agn-green)); box-shadow: var(--agn-shadow); }
.agn-partnership-copy { padding: 42px 0 42px 42px; }
.agn-partnership .agn-eyebrow { color: var(--agn-gold-light); }
.agn-partnership h2 { color: #fff; margin: 10px 0; font-size: clamp(27px, 3vw, 38px); line-height: 1.16; }
.agn-partnership p { color: rgba(255,255,255,.76); }
.agn-partnership > img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.agn-feature-pills { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.agn-feature-pills span { padding: 8px 12px; border: 1px solid rgba(255,255,255,.22); border-radius: 20px; font-size: 11px; }

.agn-field-banner { display: grid; grid-template-columns: 1.1fr .9fr; overflow: hidden; margin-top: 24px; border: 1px solid var(--agn-border); border-radius: 22px; background: var(--agn-surface); }
.agn-field-banner > img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; }
.agn-field-banner-copy { padding: 34px; align-self: center; }
.agn-field-banner-copy h2 { margin: 9px 0; font-size: 29px; }
.agn-field-banner-copy p { margin: 0; }
.agn-field-banner-copy .button { max-width: 180px; margin-top: 20px; }

.agn-panel { color: var(--agn-ink); padding: calc(23px + var(--f7-safe-area-top)) 22px 22px; }
.agn-panel-brand { display: flex; align-items: center; gap: 11px; }
.agn-panel-brand img { width: 54px; height: 54px; object-fit: contain; }
.agn-panel-brand div { display: flex; flex-direction: column; }
.agn-panel-brand strong { color: var(--agn-navy); font-family: Georgia, serif; font-size: 18px; letter-spacing: .04em; }
html.dark .agn-panel-brand strong { color: #fff; }
.agn-panel-brand span { color: var(--agn-muted); font-size: 10px; margin-top: 2px; }
.agn-panel-tagline { margin: 12px 0 25px; color: var(--agn-gold); font-family: Georgia, serif; font-style: italic; font-size: 13px; }
.agn-panel-links i { width: 28px; margin-right: 9px; color: var(--agn-green); }
.agn-panel-contact { padding: 15px; border-radius: 14px; background: var(--agn-soft); }
.agn-panel-contact > span { display: block; margin-bottom: 6px; color: var(--agn-muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.agn-panel-contact a { display: block; overflow: hidden; color: var(--agn-ink); font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.agn-panel-actions { position: absolute; left: 22px; right: 22px; bottom: calc(18px + var(--f7-safe-area-bottom)); }

.agn-page-hero { display: grid; grid-template-columns: 1fr 120px; align-items: center; gap: 20px; padding: 45px; margin-top: 18px; border-radius: 24px; background: linear-gradient(135deg, rgba(13,104,54,.12), rgba(199,148,27,.12)); }
.agn-page-hero h1, .agn-field-hero h1, .agn-company-hero h1, .agn-dealer-hero h1 { margin: 10px 0; color: var(--agn-ink); font-size: clamp(35px, 4.6vw, 54px); line-height: 1.08; letter-spacing: -.04em; }
.agn-page-hero p { max-width: 760px; margin: 0; font-size: 16px; }
.agn-page-hero > i { color: var(--agn-green); font-size: 86px; justify-self: center; opacity: .85; }

.agn-product-detail-grid { display: grid; gap: 16px; margin-top: 24px; }
.agn-product-detail { display: grid; grid-template-columns: 38% 62%; overflow: hidden; min-height: 390px; border: 1px solid var(--agn-border); border-radius: 22px; background: var(--agn-surface); }
.agn-product-detail:nth-child(even) { grid-template-columns: 62% 38%; }
.agn-product-detail:nth-child(even) .agn-product-detail-image { order: 2; }
.agn-product-detail-image { position: relative; min-height: 380px; background: #edf4df; }
.agn-product-detail-image img { width: 100%; height: 100%; object-fit: cover; }
.agn-product-detail-copy { padding: 34px; align-self: center; }
.agn-product-detail-copy h2 { margin: 8px 0; color: var(--agn-ink); font-size: 28px; }
.agn-product-detail-copy > p { margin: 0 0 18px; }
.agn-detail-note { display: flex; align-items: flex-start; gap: 9px; margin: 9px 0; color: var(--agn-muted); font-size: 12px; }
.agn-detail-note i { color: var(--agn-green); font-size: 18px; }
.agn-price-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 20px; }
.agn-price-pair > div { display: flex; flex-direction: column; padding: 13px; border-radius: 12px; background: var(--agn-soft); }
.agn-price-pair span { color: var(--agn-muted); font-size: 10px; text-transform: uppercase; letter-spacing: .06em; }
.agn-price-pair strong { margin-top: 3px; color: var(--agn-green); font-size: 20px; }
.agn-product-detail-copy .button { max-width: 210px; height: 38px; margin-top: 18px; }

.agn-crops-section { padding: 36px; margin-top: 26px; border-radius: 22px; color: #fff; background: linear-gradient(135deg, var(--agn-green-deep), var(--agn-green)); }
.agn-crops-section .agn-eyebrow { color: var(--agn-gold-light); }
.agn-crops-section h2 { color: #fff; margin: 8px 0 20px; font-size: 28px; }
.agn-crop-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.agn-crop-grid span { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; min-height: 92px; padding: 10px; border-radius: 14px; background: rgba(255,255,255,.1); text-align: center; font-size: 12px; }
.agn-crop-grid i { color: var(--agn-gold-light); font-size: 25px; }

.agn-price-section { margin-top: 28px; }
.agn-source-badge { padding: 5px 9px; border-radius: 15px; color: var(--agn-navy); background: rgba(199,148,27,.2); font-size: 10px; font-weight: 500; }
html.dark .agn-source-badge { color: var(--agn-gold-light); }
.agn-price-table-wrap { overflow-x: auto; margin-top: 10px; border: 1px solid var(--agn-border); border-radius: 17px; }
.agn-price-table { width: 100%; border-collapse: collapse; color: var(--agn-ink); background: var(--agn-surface); }
.agn-price-table th { padding: 15px; color: #fff; background: var(--agn-navy); text-align: left; font-size: 12px; }
.agn-price-table td { padding: 15px; border-bottom: 1px solid var(--agn-border); font-size: 13px; }
.agn-price-table td:last-child { color: var(--agn-green); font-weight: 600; }
.agn-disclaimer { padding: 14px 16px; margin-top: 12px; border-left: 3px solid var(--agn-gold); background: var(--agn-cream); font-size: 11px; line-height: 1.6; }

.agn-dealer-hero { display: grid; grid-template-columns: 1fr 300px; align-items: center; gap: 35px; padding: 48px; margin-top: 18px; border-radius: 25px; color: #fff; background: linear-gradient(135deg, var(--agn-navy-deep), var(--agn-navy)); }
.agn-dealer-hero h1 { color: #fff; }
.agn-dealer-hero p { color: rgba(255,255,255,.74); max-width: 680px; }
.agn-dealer-hero .agn-eyebrow { color: var(--agn-gold-light); }
.agn-dealer-hero .button { max-width: 180px; margin-top: 22px; color: var(--agn-navy); background: var(--agn-gold-light); }
.agn-package-value { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 230px; padding: 25px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: rgba(255,255,255,.08); text-align: center; }
.agn-package-value small { color: var(--agn-gold-light); letter-spacing: .1em; }
.agn-package-value strong { margin: 8px 0; color: #fff; font-size: 46px; }
.agn-package-value span { color: rgba(255,255,255,.7); font-size: 12px; }

.agn-included-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; margin-top: 10px; }
.agn-included-grid article { padding: 26px; border: 1px solid var(--agn-border); border-radius: 18px; background: var(--agn-surface); }
.agn-included-grid i { color: var(--agn-green); font-size: 31px; }
.agn-included-grid h2 { margin: 15px 0 6px; color: var(--agn-ink); font-size: 19px; }
.agn-included-grid p { margin: 0; font-size: 13px; }

.agn-tieup-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 35px; align-items: center; padding: 38px; margin-top: 26px; border-radius: 22px; background: var(--agn-soft); }
.agn-tieup-section h2 { margin: 8px 0; font-size: 31px; }
.agn-tieup-section p { margin: 7px 0; font-size: 13px; }
.agn-tieup-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.agn-tieup-grid span { display: flex; align-items: center; gap: 9px; padding: 14px; border-radius: 13px; color: var(--agn-ink); background: var(--agn-surface); font-size: 12px; }
.agn-tieup-grid i { color: var(--agn-gold); font-size: 21px; }

.agn-compliance-note, .agn-legal-note { display: flex; align-items: flex-start; gap: 15px; padding: 19px; margin-top: 18px; border: 1px solid rgba(199,148,27,.3); border-radius: 15px; background: var(--agn-cream); }
.agn-compliance-note > i, .agn-legal-note > i { color: var(--agn-gold); font-size: 27px; }
.agn-compliance-note strong, .agn-legal-note strong { color: var(--agn-ink); }
.agn-compliance-note p, .agn-legal-note p { margin: 4px 0 0; font-size: 12px; line-height: 1.55; }

.agn-interest-card, .agn-contact-card { display: grid; grid-template-columns: .85fr 1.15fr; gap: 42px; padding: 40px; margin-top: 28px; border-radius: 24px; color: #fff; background: linear-gradient(145deg, var(--agn-green-deep), var(--agn-green)); }
.agn-interest-card .agn-eyebrow, .agn-contact-card .agn-eyebrow { color: var(--agn-gold-light); }
.agn-interest-card h2, .agn-contact-card h2 { color: #fff; margin: 9px 0; font-size: 32px; }
.agn-interest-card p, .agn-contact-card p { color: rgba(255,255,255,.7); }
.agn-interest-card label, .agn-contact-card label { color: #fff; }
.agn-interest-card input, .agn-contact-card input, .agn-contact-card textarea, .agn-contact-card select { border: 1px solid rgba(255,255,255,.16); color: #fff; background: rgba(255,255,255,.1); }
.agn-contact-card select { width: 100%; height: 44px; padding: 0 12px; margin-bottom: 20px; border-radius: 10px; }
.agn-contact-card select option { color: #111; }
.agn-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.agn-field-hero { overflow: hidden; position: relative; min-height: 500px; display: flex; align-items: flex-end; padding: 44px; margin-top: 18px; border-radius: 25px; }
.agn-field-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,22,51,.92), rgba(0,34,79,.08) 78%); }
.agn-field-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.agn-field-hero > div { position: relative; z-index: 2; max-width: 780px; }
.agn-field-hero .agn-eyebrow { color: var(--agn-gold-light); }
.agn-field-hero h1 { color: #fff; }
.agn-field-hero p { color: rgba(255,255,255,.75); font-size: 16px; }

.agn-field-purpose-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.agn-field-purpose-grid article { display: flex; align-items: center; gap: 11px; min-height: 75px; padding: 15px; border: 1px solid var(--agn-border); border-radius: 14px; }
.agn-field-purpose-grid i { color: var(--agn-green); font-size: 23px; }
.agn-field-purpose-grid span { color: var(--agn-ink); font-size: 12px; font-weight: 500; }

.agn-community-story { display: grid; grid-template-columns: .95fr 1.05fr; gap: 35px; align-items: center; margin-top: 32px; }
.agn-community-story img { width: 100%; min-height: 390px; object-fit: cover; border-radius: 22px; }
.agn-community-story h2 { margin: 9px 0; font-size: clamp(28px, 3.5vw, 40px); line-height: 1.15; }

.agn-founders-message { display: grid; grid-template-columns: 1.08fr .92fr; gap: 30px; align-items: center; overflow: hidden; margin-top: 34px; border-radius: 24px; color: #fff; background: linear-gradient(145deg, var(--agn-navy-deep), var(--agn-navy)); }
.agn-founders-message > div { padding: 42px 0 42px 42px; }
.agn-founders-message .agn-eyebrow { color: var(--agn-gold-light); }
.agn-founders-message blockquote { margin: 14px 0; color: #fff; font-family: Georgia, serif; font-size: clamp(24px, 3.1vw, 36px); line-height: 1.35; }
.agn-founders-message p { color: rgba(255,255,255,.7); }
.agn-founders-message > img { width: 100%; height: 100%; min-height: 510px; object-fit: cover; }
.agn-founder-names { display: flex; gap: 22px; margin-top: 25px; }
.agn-founder-names span { display: flex; flex-direction: column; color: rgba(255,255,255,.62); font-size: 11px; }
.agn-founder-names strong { color: var(--agn-gold-light); font-size: 13px; }

.agn-company-hero { display: grid; grid-template-columns: 330px 1fr; gap: 45px; align-items: center; padding: 35px; margin-top: 18px; border-radius: 24px; background: var(--agn-cream); }
.agn-company-hero > img { width: 100%; }
.agn-company-hero p { max-width: 700px; }

.agn-vision-mission { display: grid; grid-template-columns: .8fr 1.2fr; gap: 16px; margin-top: 24px; }
.agn-vision-mission article { padding: 30px; border: 1px solid var(--agn-border); border-radius: 20px; }
.agn-vision-mission article:first-child { color: #fff; background: var(--agn-navy); }
.agn-vision-mission article:first-child h2 { color: #fff; }
.agn-vision-mission article:first-child p { color: rgba(255,255,255,.72); }
.agn-vision-mission h2 { margin: 9px 0; }
.agn-vision-mission ul { padding: 0; margin: 0; list-style: none; }
.agn-vision-mission li { display: flex; gap: 9px; align-items: flex-start; padding: 6px 0; color: var(--agn-muted); font-size: 13px; }
.agn-vision-mission li i { color: var(--agn-green); font-size: 17px; }

.agn-values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 9px; margin-top: 10px; }
.agn-values-grid article { min-height: 110px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; border: 1px solid var(--agn-border); border-radius: 16px; }
.agn-values-grid i { color: var(--agn-gold); font-size: 29px; }
.agn-values-grid span { color: var(--agn-ink); font-size: 13px; font-weight: 500; }

.agn-contact-list { display: grid; gap: 10px; margin-top: 23px; }
.agn-contact-list > a, .agn-contact-list > span { display: flex; align-items: center; gap: 10px; color: #fff; }
.agn-contact-list > a > i, .agn-contact-list > span > i { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 38px; border-radius: 50%; color: var(--agn-gold-light); background: rgba(255,255,255,.1); }
.agn-contact-list span span, .agn-contact-list a span { display: flex; flex-direction: column; color: rgba(255,255,255,.7); font-size: 11px; }
.agn-contact-list strong { color: #fff; font-size: 12px; }
.agn-site-note { text-align: center; font-size: 11px; }

.agn-access-popup { --f7-popup-tablet-width: 470px; }
.agn-access-content { max-width: 430px; margin: 0 auto; padding-top: 50px; }
.agn-access-logo { display: block; width: 210px; margin: 0 auto 25px; }
.agn-access-content h1 { margin: 8px 0; }
.agn-access-content > p { margin-top: 0; }
.agn-form-note { text-align: center; font-size: 11px; }

.agn-tabbar { box-shadow: 0 -8px 30px rgba(0,34,79,.08); border-radius: 18px 18px 0 0; }
.agn-tabbar .tab-link-active { color: var(--agn-green); }
.agn-tabbar .tab-link-active i { transform: translateY(-1px); }

@media (min-width: 900px) {
  .agn-page-content { padding-left: 30px; padding-right: 30px; padding-bottom: 110px; }
  .agn-tabbar { width: 640px; left: 50%; right: auto; bottom: 18px; transform: translateX(-50%); border: 1px solid var(--agn-border); border-radius: 22px; box-shadow: 0 16px 50px rgba(0,34,79,.18); }
}

@media (max-width: 899px) {
  .agn-hero { grid-template-columns: 1fr; min-height: auto; padding: 42px 28px; }
  .agn-hero-logo-card { position: absolute; right: 24px; top: 24px; width: 120px; padding: 8px; border-radius: 15px; opacity: .92; }
  .agn-hero-copy { padding-top: 95px; }
  .agn-overview-grid, .agn-partnership, .agn-field-banner, .agn-tieup-section, .agn-interest-card, .agn-contact-card, .agn-community-story, .agn-founders-message, .agn-company-hero, .agn-vision-mission { grid-template-columns: 1fr; }
  .agn-partnership-copy, .agn-founders-message > div { padding: 34px; }
  .agn-product-detail { grid-template-columns: 42% 58%; }
  .agn-product-detail:nth-child(even) { grid-template-columns: 58% 42%; }
}

@media (max-width: 699px) {
  .agn-page-content { padding-top: 4px; }
  .agn-hero { border-radius: 21px; }
  .agn-hero h1 { font-size: 41px; }
  .agn-hero p { font-size: 15px; }
  .agn-hero-actions { flex-direction: column; }
  .agn-hero-actions .button { width: 100%; }
  .agn-audience-row { grid-template-columns: repeat(2, 1fr); }
  .agn-audience-row span { padding: 12px; font-size: 12px; }
  .agn-overview-grid { padding-top: 42px; gap: 25px; }
  .agn-action-grid { grid-template-columns: 1fr; }
  .agn-action-grid article:nth-child(5) { grid-column: auto; }
  .agn-product-image { height: 220px; }
  .agn-partnership > img { min-height: 270px; }
  .agn-page-hero { grid-template-columns: 1fr; padding: 28px 22px; }
  .agn-page-hero > i { display: none; }
  .agn-product-detail, .agn-product-detail:nth-child(even) { grid-template-columns: 1fr; }
  .agn-product-detail:nth-child(even) .agn-product-detail-image { order: initial; }
  .agn-product-detail-image { min-height: 290px; }
  .agn-product-detail-copy { padding: 24px 20px; }
  .agn-crop-grid { grid-template-columns: repeat(2, 1fr); }
  .agn-crop-grid span:last-child { grid-column: 1 / -1; }
  .agn-price-table { min-width: 620px; }
  .agn-dealer-hero { grid-template-columns: 1fr; padding: 30px 23px; }
  .agn-package-value { min-height: 210px; max-width: 210px; margin: 0 auto; }
  .agn-included-grid, .agn-field-purpose-grid, .agn-values-grid { grid-template-columns: 1fr; }
  .agn-tieup-grid { grid-template-columns: 1fr; }
  .agn-form-row { grid-template-columns: 1fr; gap: 0; }
  .agn-field-hero { min-height: 520px; padding: 28px 22px; }
  .agn-field-hero h1 { font-size: 37px; }
  .agn-community-story img { min-height: 300px; }
  .agn-founders-message > img { min-height: 390px; }
  .agn-founder-names { flex-direction: column; gap: 10px; }
  .agn-company-hero { padding: 25px 20px; text-align: center; }
  .agn-company-hero > img { max-width: 260px; margin: 0 auto; }
  .agn-contact-card { padding: 29px 20px; gap: 25px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* AGN corporate landing experience — v3 */
:root {
  --agn-radius-sm: 14px;
  --agn-radius-md: 22px;
  --agn-radius-lg: 34px;
  --agn-section-space: clamp(74px, 9vw, 126px);
  --agn-heading-font: Georgia, "Times New Roman", serif;
}

html { scroll-behavior: smooth; }
body { font-family: Inter, "Segoe UI", Arial, sans-serif; -webkit-font-smoothing: antialiased; }
a, button { -webkit-tap-highlight-color: transparent; }
.agn-page-content > * { max-width: 1240px; }
.agn-skip-link { position: fixed; left: 18px; top: -60px; z-index: 100000; padding: 11px 16px; border-radius: 0 0 10px 10px; color: #fff; background: var(--agn-navy); font-weight: 700; transition: top .2s ease; }
.agn-skip-link:focus { top: 0; }
.agn-desktop-header { display: none; }

.agn-hero {
  min-height: 660px;
  isolation: isolate;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, .96fr);
  gap: clamp(36px, 5vw, 76px);
  padding: clamp(50px, 6vw, 78px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--agn-radius-lg);
  background:
    radial-gradient(circle at 8% 8%, rgba(240,196,84,.18), transparent 30%),
    linear-gradient(135deg, #001a3d 0%, var(--agn-navy) 46%, #063c2a 100%);
  box-shadow: 0 28px 90px rgba(0,22,51,.24);
}
.agn-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit; background-image: radial-gradient(rgba(255,255,255,.13) 1px, transparent 1px); background-size: 30px 30px; mask-image: linear-gradient(100deg, #000, transparent 55%); opacity: .2; }
.agn-hero-orbit { position: absolute; z-index: -1; border: 1px solid rgba(240,196,84,.15); border-radius: 50%; pointer-events: none; }
.agn-hero-orbit-one { width: 440px; height: 440px; left: -230px; bottom: -300px; }
.agn-hero-orbit-two { width: 260px; height: 260px; left: -125px; bottom: -205px; }
.agn-hero-copy { max-width: 650px; }
.agn-hero-badge { display: inline-flex; align-items: center; gap: 9px; width: fit-content; padding: 8px 13px; border: 1px solid rgba(240,196,84,.28); border-radius: 100px; color: var(--agn-gold-light); background: rgba(255,255,255,.06); font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.agn-hero-badge i { font-size: 17px; }
.agn-hero h1 { max-width: 700px; margin: 24px 0 22px; color: #fff; font-family: var(--agn-heading-font); font-size: clamp(48px, 5.4vw, 76px); font-weight: 500; line-height: .98; letter-spacing: -.052em; }
.agn-hero h1 em { color: var(--agn-gold-light); font-weight: inherit; }
.agn-hero p { max-width: 620px; color: rgba(255,255,255,.76); font-size: clamp(15px, 1.35vw, 18px); line-height: 1.75; }
.agn-hero-actions { gap: 12px; margin-top: 34px; }
.agn-hero-actions .button { min-width: 198px; height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 24px; font-size: 13px; font-weight: 700; letter-spacing: .01em; }
.agn-hero-actions .button i { font-size: 17px; }
.agn-hero-actions .button-fill { color: var(--agn-navy-deep); background: linear-gradient(135deg, #f3ca62, var(--agn-gold)); box-shadow: 0 13px 32px rgba(199,148,27,.25); }
.agn-hero-actions .button-outline { color: #fff; border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.04); }
.agn-hero-assurance { display: flex; flex-wrap: wrap; gap: 16px 22px; margin-top: 33px; }
.agn-hero-assurance span { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.68); font-size: 11px; font-weight: 600; }
.agn-hero-assurance i { color: var(--agn-gold-light); font-size: 16px; }
.agn-hero-visual { position: relative; min-height: 500px; align-self: stretch; }
.agn-hero-image { position: absolute; inset: 0 0 36px 18px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 180px 28px 160px 28px; box-shadow: 0 28px 70px rgba(0,0,0,.33); }
.agn-hero-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, transparent 45%, rgba(0,34,79,.48)); }
.agn-hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: 55% 45%; transform: scale(1.08); }
.agn-hero-mark { position: absolute; left: -20px; top: 43px; z-index: 2; width: 178px; display: flex; align-items: center; gap: 11px; padding: 11px 13px; border-radius: 17px; color: var(--agn-ink); background: rgba(255,255,255,.94); box-shadow: 0 18px 45px rgba(0,0,0,.2); backdrop-filter: blur(12px); }
.agn-hero-mark img { width: 47px; height: 47px; flex: 0 0 47px; object-fit: contain; }
.agn-hero-mark span { display: flex; flex-direction: column; color: #5e6877; font-size: 9px; line-height: 1.4; }
.agn-hero-mark strong { color: var(--agn-navy); font-size: 11px; }
.agn-hero-location { position: absolute; right: -10px; bottom: 6px; z-index: 2; display: flex; align-items: center; gap: 11px; padding: 15px 18px; border: 1px solid rgba(255,255,255,.14); border-radius: 17px; color: #fff; background: rgba(0,22,51,.86); box-shadow: 0 18px 38px rgba(0,0,0,.25); backdrop-filter: blur(12px); }
.agn-hero-location > i { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; color: var(--agn-navy); background: var(--agn-gold-light); font-size: 19px; }
.agn-hero-location span { display: flex; flex-direction: column; font-size: 12px; font-weight: 700; }
.agn-hero-location small { margin-bottom: 2px; color: rgba(255,255,255,.55); font-size: 8px; letter-spacing: .16em; }

.agn-trust-rail { display: grid; grid-template-columns: .62fr repeat(4, 1fr); align-items: stretch; overflow: hidden; margin-top: 18px; border: 1px solid var(--agn-border); border-radius: 19px; background: var(--agn-surface); box-shadow: 0 13px 38px rgba(0,34,79,.05); }
.agn-trust-label { display: flex; align-items: center; padding: 24px; color: var(--agn-gold); font-family: var(--agn-heading-font); font-size: 20px; font-style: italic; }
.agn-trust-rail > div { display: grid; grid-template-columns: 38px 1fr; grid-template-rows: auto auto; column-gap: 10px; align-content: center; min-height: 92px; padding: 18px; border-left: 1px solid var(--agn-border); }
.agn-trust-rail i { grid-row: 1 / 3; align-self: center; color: var(--agn-green); font-size: 25px; }
.agn-trust-rail strong { color: var(--agn-ink); font-size: 12px; }
.agn-trust-rail small { color: var(--agn-muted); font-size: 9px; line-height: 1.4; }

.agn-home-intro { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(45px, 7vw, 90px); align-items: center; padding: var(--agn-section-space) 0; }
.agn-intro-copy > p { max-width: 500px; font-size: 15px; line-height: 1.8; }
.agn-pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.agn-pillar-grid article { position: relative; overflow: hidden; min-height: 290px; padding: 28px 24px; border: 1px solid var(--agn-border); border-radius: var(--agn-radius-md); background: var(--agn-surface); box-shadow: 0 17px 48px rgba(0,34,79,.06); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.agn-pillar-grid article:hover { transform: translateY(-6px); border-color: rgba(199,148,27,.35); box-shadow: 0 24px 58px rgba(0,34,79,.12); }
.agn-pillar-grid article > span { position: absolute; right: 18px; top: 15px; color: rgba(0,34,79,.07); font-family: var(--agn-heading-font); font-size: 56px; }
html.dark .agn-pillar-grid article > span { color: rgba(255,255,255,.06); }
.agn-pillar-grid i { width: 54px; height: 54px; display: grid; place-items: center; margin-top: 56px; border-radius: 15px; color: var(--agn-green); background: rgba(13,104,54,.09); font-size: 26px; }
.agn-pillar-grid h3 { margin: 20px 0 8px; color: var(--agn-ink); font-family: var(--agn-heading-font); font-size: 22px; font-weight: 600; }
.agn-pillar-grid p { margin: 0; font-size: 12px; line-height: 1.7; }

.agn-home-products { padding: clamp(62px, 7vw, 92px); border-radius: var(--agn-radius-lg); background: linear-gradient(145deg, #f3f7ee, #fbfaf5); }
html.dark .agn-home-products { background: linear-gradient(145deg, #0a2228, #0d2930); }
.agn-section-heading { display: grid; grid-template-columns: 1fr .64fr; gap: 55px; align-items: end; }
.agn-section-heading h2 { max-width: 700px; margin: 10px 0 0; color: var(--agn-ink); font-family: var(--agn-heading-font); font-size: clamp(36px, 4vw, 53px); font-weight: 500; line-height: 1.08; letter-spacing: -.035em; }
.agn-section-heading > p { margin: 0; padding-bottom: 5px; font-size: 14px; line-height: 1.8; }
.agn-product-showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 42px; }
.agn-product-card { overflow: hidden; border: 0; border-radius: var(--agn-radius-md); box-shadow: 0 17px 48px rgba(0,34,79,.09); transition: transform .25s ease, box-shadow .25s ease; }
.agn-product-card:hover { transform: translateY(-7px); box-shadow: 0 27px 62px rgba(0,34,79,.15); }
.agn-product-image { height: 290px; background: linear-gradient(145deg, #f0f7e5, #dfeccc); }
.agn-product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.agn-product-card:hover .agn-product-image img { transform: scale(1.035); }
.agn-product-image > span { left: 17px; top: 17px; right: auto; bottom: auto; padding: 7px 10px; border-radius: 100px; color: #fff; background: rgba(0,34,79,.84); backdrop-filter: blur(8px); }
.agn-product-arrow { position: absolute; right: 17px; top: 17px; width: 39px; height: 39px; display: grid; place-items: center; border-radius: 50%; color: var(--agn-navy); background: rgba(255,255,255,.9); box-shadow: 0 8px 22px rgba(0,0,0,.12); }
.agn-product-arrow i { font-size: 18px; }
.agn-product-body { min-height: 250px; padding: 27px 25px 23px; }
.agn-product-body h2 { margin: 8px 0 9px; font-family: var(--agn-heading-font); font-size: 24px; font-weight: 600; }
.agn-product-body p { min-height: 62px; font-size: 12px; line-height: 1.7; }
.agn-product-price { padding-top: 17px; border-top: 1px solid var(--agn-border); }
.agn-product-price span { font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.agn-product-price strong { font-family: var(--agn-heading-font); font-size: 22px; }
.agn-catalog-button { width: fit-content; min-width: 260px; height: 44px; display: flex; gap: 8px; margin: 32px auto 0; padding: 0 20px; color: var(--agn-green); border-color: rgba(13,104,54,.35); font-weight: 700; }

.agn-partnership { grid-template-columns: .9fr 1.1fr; margin-top: var(--agn-section-space); border-radius: var(--agn-radius-lg); background: linear-gradient(135deg, #001b40, #064b31); box-shadow: 0 24px 70px rgba(0,34,79,.17); }
.agn-partnership-copy { padding: clamp(44px, 6vw, 76px); }
.agn-partnership h2 { margin: 14px 0 18px; font-family: var(--agn-heading-font); font-size: clamp(36px, 4.2vw, 54px); font-weight: 500; line-height: 1.07; letter-spacing: -.035em; }
.agn-partnership p { font-size: 14px; line-height: 1.8; }
.agn-partner-name { display: flex; align-items: center; gap: 13px; margin-top: 27px; padding: 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 15px; background: rgba(255,255,255,.06); }
.agn-partner-name > i { color: var(--agn-gold-light); font-size: 30px; }
.agn-partner-name span { display: flex; flex-direction: column; }
.agn-partner-name small { color: rgba(255,255,255,.5); font-size: 8px; letter-spacing: .13em; }
.agn-partner-name strong { margin-top: 3px; color: #fff; font-size: 12px; }
.agn-light-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 25px; color: var(--agn-gold-light); font-size: 12px; font-weight: 700; }
.agn-light-link i { font-size: 15px; }
.agn-partnership-photo { position: relative; min-height: 560px; overflow: hidden; }
.agn-partnership-photo img { width: 100%; height: 100%; object-fit: cover; }
.agn-partnership-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,27,64,.2), transparent 35%), linear-gradient(to top, rgba(0,22,51,.68), transparent 45%); }
.agn-partnership-photo > span { position: absolute; left: 27px; right: 27px; bottom: 27px; z-index: 2; padding: 15px 18px; border: 1px solid rgba(255,255,255,.17); border-radius: 13px; color: #fff; background: rgba(0,22,51,.55); backdrop-filter: blur(11px); font-size: 11px; font-weight: 600; }

.agn-home-dealer { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(42px, 7vw, 92px); align-items: center; padding: var(--agn-section-space) clamp(15px, 4vw, 55px); }
.agn-home-dealer-copy h2 { max-width: 710px; margin: 12px 0 19px; color: var(--agn-ink); font-family: var(--agn-heading-font); font-size: clamp(38px, 4.5vw, 58px); font-weight: 500; line-height: 1.06; letter-spacing: -.04em; }
.agn-home-dealer-copy > p { max-width: 650px; font-size: 15px; line-height: 1.8; }
.agn-home-dealer-copy ul { display: grid; gap: 11px; padding: 0; margin: 25px 0 29px; list-style: none; }
.agn-home-dealer-copy li { display: flex; align-items: center; gap: 10px; color: var(--agn-ink); font-size: 12px; font-weight: 600; }
.agn-home-dealer-copy li i { color: var(--agn-green); font-size: 19px; }
.agn-home-dealer-copy .button { width: fit-content; height: 46px; display: flex; gap: 8px; padding: 0 23px; font-weight: 700; }
.agn-home-dealer-card { position: relative; overflow: hidden; min-height: 430px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 45px; border-radius: 50% 50% 26px 26px; color: #fff; background: linear-gradient(150deg, var(--agn-navy-deep), var(--agn-navy)); box-shadow: 0 27px 70px rgba(0,34,79,.2); text-align: center; }
.agn-home-dealer-card::before { content: ""; position: absolute; width: 330px; height: 330px; border: 1px solid rgba(240,196,84,.17); border-radius: 50%; }
.agn-home-dealer-card img { position: relative; width: 80px; height: 80px; margin-bottom: 23px; padding: 5px; border-radius: 50%; background: #fff; object-fit: contain; }
.agn-home-dealer-card > small { position: relative; color: var(--agn-gold-light); font-size: 9px; letter-spacing: .14em; }
.agn-home-dealer-card > strong { position: relative; margin: 7px 0; font-family: var(--agn-heading-font); font-size: 58px; font-weight: 500; }
.agn-home-dealer-card > span { position: relative; max-width: 220px; color: rgba(255,255,255,.62); font-size: 10px; line-height: 1.5; }
.agn-home-dealer-card > div { position: relative; display: flex; gap: 8px; margin-top: 30px; padding: 12px 14px; border-radius: 10px; color: rgba(255,255,255,.7); background: rgba(255,255,255,.07); font-size: 9px; line-height: 1.5; }
.agn-home-dealer-card > div i { flex: 0 0 auto; color: var(--agn-gold-light); font-size: 16px; }

.agn-field-story { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(50px, 7vw, 94px); align-items: center; padding-bottom: var(--agn-section-space); }
.agn-field-collage { position: relative; min-height: 610px; }
.agn-field-main { position: absolute; inset: 0 65px 70px 0; width: calc(100% - 65px); height: calc(100% - 70px); border-radius: 28px 120px 28px 28px; object-fit: cover; box-shadow: 0 24px 65px rgba(0,34,79,.16); }
.agn-field-small { position: absolute; right: 0; bottom: 0; width: 45%; height: 245px; padding: 7px; border-radius: 110px 22px 22px 22px; background: var(--agn-surface); object-fit: cover; box-shadow: 0 18px 45px rgba(0,34,79,.18); }
.agn-field-collage > span { position: absolute; left: 25px; bottom: 34px; display: flex; flex-direction: column; padding: 15px 18px; border-radius: 13px; color: rgba(255,255,255,.7); background: rgba(0,34,79,.88); font-size: 9px; backdrop-filter: blur(9px); }
.agn-field-collage > span strong { color: #fff; font-size: 12px; }
.agn-field-story-copy h2 { margin: 12px 0 19px; color: var(--agn-ink); font-family: var(--agn-heading-font); font-size: clamp(38px, 4.5vw, 57px); font-weight: 500; line-height: 1.08; letter-spacing: -.04em; }
.agn-field-story-copy > p { font-size: 14px; line-height: 1.8; }
.agn-field-story-copy blockquote { margin: 26px 0; padding: 5px 0 5px 20px; border-left: 3px solid var(--agn-gold); color: var(--agn-navy); font-family: var(--agn-heading-font); font-size: 20px; font-style: italic; line-height: 1.5; }
html.dark .agn-field-story-copy blockquote { color: var(--agn-gold-light); }
.agn-signatures { display: flex; flex-wrap: wrap; gap: 18px 36px; }
.agn-signatures span { display: flex; flex-direction: column; color: var(--agn-muted); font-size: 9px; }
.agn-signatures strong { color: var(--agn-ink); font-size: 11px; }

.agn-home-cta { display: grid; grid-template-columns: 1fr auto; gap: 35px; align-items: center; padding: clamp(42px, 6vw, 70px); border: 1px solid rgba(199,148,27,.25); border-radius: var(--agn-radius-lg); background: linear-gradient(135deg, rgba(199,148,27,.13), rgba(13,104,54,.1)); }
.agn-home-cta h2 { margin: 10px 0; color: var(--agn-ink); font-family: var(--agn-heading-font); font-size: clamp(35px, 4vw, 52px); font-weight: 500; }
.agn-home-cta p { max-width: 670px; margin: 0; font-size: 13px; }
.agn-home-cta-actions { display: flex; align-items: center; gap: 23px; }
.agn-home-cta-actions .button { width: fit-content; height: 46px; display: flex; gap: 8px; padding: 0 22px; font-weight: 700; }
.agn-cta-phone { display: flex; align-items: center; gap: 9px; color: var(--agn-ink); }
.agn-cta-phone > i { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--agn-navy); font-size: 17px; }
.agn-cta-phone span { display: flex; flex-direction: column; font-size: 11px; font-weight: 700; white-space: nowrap; }
.agn-cta-phone small { color: var(--agn-muted); font-size: 8px; letter-spacing: .12em; }

.agn-home-footer { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 46px; margin-top: 30px; padding: 55px 55px 26px; border-radius: 28px 28px 0 0; color: rgba(255,255,255,.63); background: var(--agn-navy-deep); }
.agn-home-footer > div:not(.agn-footer-brand) { display: flex; flex-direction: column; gap: 9px; font-size: 10px; line-height: 1.6; }
.agn-home-footer > div > strong { margin-bottom: 5px; color: #fff; font-size: 11px; text-transform: uppercase; letter-spacing: .09em; }
.agn-home-footer a { color: rgba(255,255,255,.66); }
.agn-home-footer a:hover { color: var(--agn-gold-light); }
.agn-footer-brand img { width: 170px; max-height: 105px; padding: 8px; border-radius: 12px; background: #fff; object-fit: contain; }
.agn-footer-brand p { max-width: 270px; margin: 14px 0 0; color: rgba(255,255,255,.58); font-family: var(--agn-heading-font); font-size: 13px; line-height: 1.6; }
.agn-footer-bottom { grid-column: 1 / -1; padding-top: 22px; margin: 5px 0 0; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.4); font-size: 9px; text-align: center; }

.agn-motion-ready .agn-reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.agn-motion-ready .agn-reveal.agn-is-visible { opacity: 1; transform: translateY(0); }

@media (min-width: 1024px) {
  .agn-desktop-header { position: fixed; inset: 0 0 auto; z-index: 9000; display: block; color: var(--agn-ink); background: rgba(255,255,255,.94); box-shadow: 0 10px 32px rgba(0,34,79,.08); backdrop-filter: blur(18px); }
  html.dark .agn-desktop-header { background: rgba(6,23,35,.94); }
  .agn-header-ribbon { height: 31px; color: rgba(255,255,255,.7); background: var(--agn-navy-deep); font-size: 9px; }
  .agn-header-inner { width: min(1240px, calc(100% - 50px)); height: 100%; display: flex; align-items: center; justify-content: space-between; margin: 0 auto; }
  .agn-header-ribbon .agn-header-inner > span, .agn-header-ribbon .agn-header-inner > div, .agn-header-ribbon a { display: flex; align-items: center; gap: 7px; }
  .agn-header-ribbon .agn-header-inner > div { gap: 22px; }
  .agn-header-ribbon a { color: rgba(255,255,255,.7); }
  .agn-header-ribbon i { color: var(--agn-gold-light); font-size: 12px; }
  .agn-header-main { height: 78px; border-bottom: 1px solid var(--agn-border); }
  .agn-header-brand { display: flex; align-items: center; gap: 10px; color: var(--agn-ink); }
  .agn-header-brand img { width: 54px; height: 54px; object-fit: contain; }
  .agn-header-brand span { display: flex; flex-direction: column; }
  .agn-header-brand strong { color: var(--agn-navy); font-family: var(--agn-heading-font); font-size: 16px; letter-spacing: .045em; }
  html.dark .agn-header-brand strong { color: #fff; }
  .agn-header-brand small { margin-top: -1px; color: var(--agn-muted); font-size: 8px; letter-spacing: .04em; }
  .agn-site-nav { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 31px); height: 100%; }
  .agn-site-nav a { position: relative; display: flex; align-items: center; height: 100%; color: var(--agn-muted); font-size: 11px; font-weight: 650; white-space: nowrap; }
  .agn-site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 3px; background: var(--agn-gold); transition: right .22s ease; }
  .agn-site-nav a:hover, .agn-site-nav a.tab-link-active { color: var(--agn-navy); }
  html.dark .agn-site-nav a:hover, html.dark .agn-site-nav a.tab-link-active { color: #fff; }
  .agn-site-nav a.tab-link-active::after { right: 0; }
  .agn-header-actions { display: flex; align-items: center; gap: 10px; }
  .agn-header-actions .button { width: auto; height: 39px; display: flex; align-items: center; gap: 7px; padding: 0 17px; margin: 0; font-size: 10px; font-weight: 700; }
  .agn-header-actions .button i { font-size: 14px; }
  .agn-theme-button { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--agn-border); border-radius: 50%; color: var(--agn-navy); }
  html.dark .agn-theme-button { color: #fff; }
  .agn-theme-button i { font-size: 17px; }
  .agn-views .navbar { display: none; }
  .agn-page-content { padding-top: 137px !important; padding-bottom: 0 !important; }
  .agn-tabbar { display: none; }
}

@media (max-width: 1100px) and (min-width: 1024px) {
  .agn-header-brand small { display: none; }
  .agn-header-brand img { width: 44px; height: 44px; }
  .agn-site-nav { gap: 16px; }
  .agn-header-actions .button { display: none; }
}

@media (max-width: 1023px) {
  .agn-page-content { padding-left: 16px; padding-right: 16px; padding-bottom: 105px; }
  .agn-hero { grid-template-columns: 1fr; gap: 38px; min-height: auto; padding: 50px 34px 42px; }
  .agn-hero-copy { max-width: 720px; padding-top: 0; }
  .agn-hero h1 { max-width: 680px; }
  .agn-hero-visual { min-height: 440px; }
  .agn-hero-image { inset: 0 22px 32px 22px; border-radius: 170px 28px 150px 28px; }
  .agn-hero-mark { left: 0; }
  .agn-hero-location { right: 0; }
  .agn-trust-rail { grid-template-columns: repeat(2, 1fr); }
  .agn-trust-label { grid-column: 1 / -1; justify-content: center; min-height: 58px; padding: 12px; border-bottom: 1px solid var(--agn-border); }
  .agn-trust-rail > div { border-left: 0; border-bottom: 1px solid var(--agn-border); }
  .agn-trust-rail > div:nth-of-type(even) { border-left: 1px solid var(--agn-border); }
  .agn-home-intro, .agn-field-story { grid-template-columns: 1fr; }
  .agn-home-intro { gap: 45px; }
  .agn-intro-copy { max-width: 700px; }
  .agn-partnership { grid-template-columns: 1fr; }
  .agn-partnership-photo { min-height: 430px; }
  .agn-home-dealer { grid-template-columns: 1fr; }
  .agn-home-dealer-card { width: min(480px, 100%); justify-self: center; }
  .agn-field-collage { min-height: 580px; }
  .agn-field-story-copy { max-width: 700px; }
  .agn-home-cta { grid-template-columns: 1fr; }
  .agn-home-cta-actions { justify-content: space-between; }
  .agn-home-footer { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 25px; padding: 45px 32px 25px; }
}

@media (max-width: 699px) {
  :root { --agn-section-space: 72px; }
  .agn-page-content { padding-left: 10px; padding-right: 10px; }
  .agn-hero { padding: 35px 22px 28px; border-radius: 24px; }
  .agn-hero-badge { padding: 7px 10px; font-size: 8px; letter-spacing: .1em; }
  .agn-hero h1 { margin: 20px 0 17px; font-size: clamp(42px, 13vw, 58px); line-height: 1; }
  .agn-hero p { font-size: 14px; line-height: 1.7; }
  .agn-hero-actions { flex-direction: column; margin-top: 27px; }
  .agn-hero-actions .button { width: 100%; min-width: 0; }
  .agn-hero-assurance { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
  .agn-hero-assurance span { font-size: 9px; }
  .agn-hero-visual { min-height: 335px; }
  .agn-hero-image { inset: 0 8px 30px; border-radius: 110px 20px 92px 20px; }
  .agn-hero-mark { left: 0; top: 20px; width: 150px; padding: 9px; }
  .agn-hero-mark img { width: 39px; height: 39px; flex-basis: 39px; }
  .agn-hero-mark strong { font-size: 9px; }
  .agn-hero-location { right: 0; padding: 11px 13px; }
  .agn-hero-location > i { width: 31px; height: 31px; font-size: 15px; }
  .agn-hero-location span { font-size: 10px; }
  .agn-trust-rail { margin-top: 10px; border-radius: 16px; }
  .agn-trust-label { font-size: 17px; }
  .agn-trust-rail > div { grid-template-columns: 30px 1fr; min-height: 78px; padding: 13px 10px; }
  .agn-trust-rail i { font-size: 20px; }
  .agn-trust-rail strong { font-size: 10px; }
  .agn-trust-rail small { display: none; }
  .agn-home-intro { padding-left: 8px; padding-right: 8px; }
  .agn-display-heading { font-size: 38px; }
  .agn-pillar-grid { grid-template-columns: 1fr; }
  .agn-pillar-grid article { min-height: 220px; }
  .agn-pillar-grid i { margin-top: 22px; }
  .agn-home-products { padding: 55px 17px; border-radius: 24px; }
  .agn-section-heading { grid-template-columns: 1fr; gap: 18px; }
  .agn-section-heading h2 { font-size: 39px; }
  .agn-product-showcase { grid-template-columns: 1fr; gap: 18px; margin-top: 30px; }
  .agn-product-image { height: 285px; }
  .agn-product-body { min-height: 0; }
  .agn-product-body p { min-height: 0; }
  .agn-catalog-button { width: 100%; min-width: 0; }
  .agn-partnership { margin-top: 72px; border-radius: 24px; }
  .agn-partnership-copy { padding: 42px 24px; }
  .agn-partnership h2 { font-size: 40px; }
  .agn-partnership-photo { min-height: 330px; }
  .agn-home-dealer { padding-left: 8px; padding-right: 8px; }
  .agn-home-dealer-copy h2 { font-size: 41px; }
  .agn-home-dealer-copy .button { width: 100%; justify-content: center; }
  .agn-home-dealer-card { min-height: 390px; padding: 34px 25px; border-radius: 150px 150px 22px 22px; }
  .agn-field-story { gap: 44px; padding-left: 8px; padding-right: 8px; }
  .agn-field-collage { min-height: 440px; }
  .agn-field-main { right: 40px; bottom: 50px; width: calc(100% - 40px); height: calc(100% - 50px); border-radius: 22px 90px 22px 22px; }
  .agn-field-small { width: 44%; height: 175px; border-radius: 85px 18px 18px 18px; }
  .agn-field-collage > span { left: 14px; bottom: 20px; }
  .agn-field-story-copy h2 { font-size: 40px; }
  .agn-field-story-copy blockquote { font-size: 18px; }
  .agn-home-cta { padding: 42px 24px; border-radius: 24px; }
  .agn-home-cta-actions { flex-direction: column; align-items: stretch; }
  .agn-home-cta-actions .button { width: 100%; justify-content: center; }
  .agn-cta-phone { justify-content: center; }
  .agn-home-footer { grid-template-columns: 1fr 1fr; gap: 31px 24px; padding: 40px 25px 25px; border-radius: 24px 24px 0 0; }
  .agn-footer-brand { grid-column: 1 / -1; }
  .agn-home-footer > div:nth-of-type(4) { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  .agn-motion-ready .agn-reveal { opacity: 1; transform: none; transition: none; }
  .agn-pillar-grid article, .agn-product-card, .agn-product-image img { transition: none; }
}

/* Production trust and usability refinements — v4 */
.agn-company-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.agn-company-actions .button { width: fit-content; min-width: 175px; height: 43px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 0 20px; margin: 0; font-weight: 700; }
.agn-company-actions .button i { font-size: 17px; }
.agn-email-form-note { display: flex; align-items: flex-start; gap: 7px; margin: 13px 0 0; color: rgba(255,255,255,.68) !important; font-size: 9px !important; line-height: 1.55; }
.agn-email-form-note i { flex: 0 0 auto; color: var(--agn-gold-light); font-size: 15px; }
.agn-interest-card form .button, .agn-contact-card form .button { display: flex; align-items: center; justify-content: center; gap: 8px; }
.agn-interest-card form .button i, .agn-contact-card form .button i { font-size: 16px; }
#dealer-interest, #contact-agn { scroll-margin-top: 135px; }
input:focus, select:focus, textarea:focus { border-color: var(--agn-gold-light) !important; box-shadow: 0 0 0 3px rgba(240,196,84,.14); outline: 0; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--agn-gold-light); outline-offset: 3px; }
.agn-home-footer { margin-bottom: 0; }
.agn-home-footer a { text-underline-offset: 3px; }

@media (max-width: 699px) {
  .agn-company-actions { flex-direction: column; }
  .agn-company-actions .button { width: 100%; }
  #dealer-interest, #contact-agn { scroll-margin-top: 85px; }
}

/* Yui template alignment and media consistency — v5 */
:root {
  --agn-radius-sm: 15px;
  --agn-radius-md: 18px;
  --agn-radius-lg: 24px;
  --agn-heading-font: "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --agn-shadow: var(--block-shadow);
}

body { font-family: "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
h1, h2, h3, .agn-display-heading { font-family: var(--agn-heading-font); font-weight: 600; }
.agn-page-content > * { max-width: 1180px; }
.agn-header-inner { max-width: 1180px; }
.agn-panel-brand strong, .agn-trust-label, .agn-product-price strong, .agn-package-value strong, .agn-home-dealer-card > strong, .agn-field-story-copy blockquote, .agn-footer-brand p { font-family: var(--agn-heading-font); }
.agn-panel-brand strong { font-weight: 600; }
.button { font-family: "Rubik", sans-serif; font-weight: 500; }

.agn-page-content .card { border: 0; border-radius: var(--agn-radius-md); box-shadow: var(--block-shadow); }
.agn-hero.card { margin: 0 auto; border-radius: var(--agn-radius-lg); box-shadow: 0 20px 55px rgba(0,34,79,.18); }
.agn-hero h1 { font-weight: 600; letter-spacing: -.035em; }
.agn-hero h1 em { font-style: normal; }
.agn-hero-image { inset: 0 0 28px 0; border-radius: var(--agn-radius-md); }
.agn-hero-image img { transform: none; object-position: center; }
.agn-hero-mark, .agn-hero-location { border-radius: var(--agn-radius-sm); }
.agn-trust-rail, .agn-pillar-grid article { border-radius: var(--agn-radius-md); box-shadow: var(--block-shadow); }
.agn-pillar-grid article:hover { box-shadow: 0 12px 30px rgba(0,34,79,.11); }

.agn-home-products { border-radius: var(--agn-radius-lg); }
.agn-product-showcase { display: block; margin-top: 42px; }
.agn-product-showcase swiper-slide { height: auto; }
.agn-product-showcase .agn-product-card { height: 100%; margin: 0; border-radius: var(--agn-radius-md); box-shadow: var(--block-shadow); background: var(--agn-surface); }
.agn-product-card:hover { box-shadow: 0 12px 30px rgba(0,34,79,.12); }
.agn-product-image { height: 300px; padding: 24px; background: linear-gradient(145deg, #f7faf4, #edf3e7); }
html.dark .agn-product-image { background: #102b32; }
.agn-product-image img { width: 100%; height: 100%; object-fit: contain; object-position: center; filter: drop-shadow(0 10px 15px rgba(0,34,79,.12)); transform: none; }
.agn-product-card:hover .agn-product-image img { transform: scale(1.015); }
.agn-product-body.card-footer { min-height: 248px; display: block; padding: 24px; background: var(--agn-surface); }
.agn-product-body h2 { font-family: var(--agn-heading-font); font-size: 21px; }
.agn-product-arrow { border-radius: 50%; }

.agn-partnership.card { margin-top: var(--agn-section-space); border-radius: var(--agn-radius-lg); box-shadow: 0 15px 42px rgba(0,34,79,.15); }
.agn-partnership-photo img { object-position: center; }
.agn-home-dealer-card.card { margin: 0; border-radius: var(--agn-radius-lg); }

.agn-field-story { grid-template-columns: 1.04fr .96fr; }
.agn-field-card { align-self: center; margin: 0; overflow: hidden; background: var(--agn-surface) !important; }
.agn-field-card-image img { width: 100%; aspect-ratio: 1500 / 650; object-fit: cover; object-position: center; }
.agn-field-card .card-image-footer { padding: 70px 20px 18px; }
.agn-field-card .card-image-footer h2 { font-size: 20px; }
.agn-field-card-footer { background: var(--agn-surface); }
.agn-field-card-footer .author-image { width: 40px; height: 40px; padding: 3px; border-radius: 50%; background: #fff; object-fit: contain; }
.agn-field-card-footer .card-author { font-size: 13px; }
.agn-field-card-footer .card-date { font-size: 10px; }
.agn-field-card-footer .card-footer-right i { color: var(--agn-green); }

.agn-page-hero.card, .agn-dealer-hero.card, .agn-tieup-section.card, .agn-interest-card.card, .agn-field-hero.card, .agn-founders-message.card, .agn-company-hero.card, .agn-contact-card.card { border-radius: var(--agn-radius-lg); }
.agn-product-detail.card { margin: 0; border-radius: var(--agn-radius-md); background: var(--agn-surface); }
.agn-product-detail-image { display: grid; place-items: center; padding: 30px; background: linear-gradient(145deg, #f7faf4, #edf3e7); }
html.dark .agn-product-detail-image { background: #102b32; }
.agn-product-detail-image img { width: 100%; height: 100%; object-fit: contain; object-position: center; filter: drop-shadow(0 12px 18px rgba(0,34,79,.12)); }
.agn-included-grid .card, .agn-vision-mission .card, .agn-values-grid .card { margin: 0; background: var(--agn-surface); }
.agn-vision-mission article:first-child.card { background: var(--agn-navy); }
.agn-field-hero > img { object-position: center; }
.agn-community-story img { min-height: 0; aspect-ratio: 3 / 2; object-fit: cover; object-position: center; }
.agn-founders-message > img { object-position: 50% 18%; }
.agn-company-hero > img { aspect-ratio: 1; object-fit: contain; }

.agn-home-footer { border-radius: var(--agn-radius-lg) var(--agn-radius-lg) 0 0; }
.agn-tabbar { border-radius: 0; box-shadow: 0 -1px 0 var(--agn-border); }
.agn-tabbar .toolbar-inner { max-width: 560px; margin: 0 auto; }

@media (max-width: 1023px) {
  .agn-field-story { grid-template-columns: 1fr; }
  .agn-hero-image { inset: 0 0 28px; }
}

@media (max-width: 699px) {
  .agn-page-content { padding-left: 15px; padding-right: 15px; }
  .agn-hero.card { padding: 34px 20px 25px; border-radius: var(--agn-radius-lg); }
  .agn-hero-image { inset: 0 0 28px; border-radius: var(--agn-radius-md); }
  .agn-hero-mark { left: -4px; }
  .agn-hero-location { right: -4px; }
  .agn-home-products { margin-left: 0; margin-right: 0; padding: 50px 0; overflow: hidden; }
  .agn-home-products > .agn-section-heading, .agn-home-products > .agn-catalog-button { margin-left: 20px; margin-right: 20px; }
  .agn-product-showcase { margin-top: 28px; }
  .agn-product-image { height: 290px; }
  .agn-product-body.card-footer { min-height: 235px; }
  .agn-field-card-image img { aspect-ratio: 16 / 9; }
  .agn-product-detail-image { min-height: 310px; padding: 24px; }
  .agn-page-hero.card, .agn-dealer-hero.card, .agn-tieup-section.card, .agn-interest-card.card, .agn-field-hero.card, .agn-founders-message.card, .agn-company-hero.card, .agn-contact-card.card { border-radius: var(--agn-radius-md); }
}

/* Mobile interaction and responsive polish — v6 */
@media (hover: none) {
  .agn-pillar-grid article:hover, .agn-product-card:hover { transform: none; }
  .agn-product-card:hover .agn-product-image img { transform: none; }
}

@media (max-width: 699px) {
  .page-content { overscroll-behavior-y: contain; }
  .agn-page-content { padding-bottom: calc(86px + var(--f7-safe-area-bottom)); }
  .agn-navbar .link.icon-only { min-width: 44px; min-height: 44px; display: grid; place-items: center; }
  .agn-navbar .right { gap: 1px; }
  .agn-navbar-title { font-size: 14px; font-weight: 600; }
  .agn-navbar-title img { width: 32px; height: 32px; }

  .agn-hero h1 { font-size: clamp(39px, 12vw, 50px); line-height: 1.02; }
  .agn-hero p { font-size: 13px; line-height: 1.7; }
  .agn-hero-actions .button { min-height: 48px; }
  .agn-hero-assurance { gap: 10px 8px; }
  .agn-hero-assurance span { min-width: 0; line-height: 1.35; }
  .agn-hero-visual { min-height: 305px; }
  .agn-hero-mark { top: 16px; width: 142px; }
  .agn-hero-mark span { font-size: 8px; }
  .agn-hero-location { bottom: 3px; }

  .agn-trust-rail > div { min-height: 82px; }
  .agn-home-intro { gap: 34px; }
  .agn-pillar-grid article { min-height: 198px; padding: 23px 20px; }
  .agn-pillar-grid i { margin-top: 17px; }
  .agn-pillar-grid h3 { margin-top: 17px; }

  .agn-product-image { height: 270px; padding: 20px; }
  .agn-product-body.card-footer { min-height: 224px; padding: 22px 20px; }
  .agn-product-body h2 { font-size: 20px; line-height: 1.25; }
  .agn-product-arrow { width: 44px; height: 44px; }
  .agn-catalog-button { min-height: 46px; }

  .agn-partnership-copy { padding: 38px 22px; }
  .agn-partnership h2 { font-size: 36px; }
  .agn-partnership-photo { min-height: 0; aspect-ratio: 3 / 2; }
  .agn-partnership-photo > span { left: 16px; right: 16px; bottom: 16px; }
  .agn-home-dealer { gap: 38px; }
  .agn-home-dealer-copy h2 { font-size: 37px; }
  .agn-home-dealer-card.card { min-height: 355px; }
  .agn-home-dealer-card > strong { font-size: 50px; }

  .agn-field-story { gap: 38px; }
  .agn-field-card .card-image-footer { padding: 58px 16px 14px; }
  .agn-field-card-footer { padding: 11px 13px; }
  .agn-field-card-footer .card-date { line-height: 1.35; }
  .agn-field-story-copy h2 { font-size: 37px; }
  .agn-signatures { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

  .agn-home-cta { padding: 36px 21px; }
  .agn-home-cta h2 { font-size: 34px; }
  .agn-home-cta-actions { gap: 17px; }

  .agn-page-hero { padding: 27px 20px; }
  .agn-page-hero h1, .agn-dealer-hero h1, .agn-field-hero h1, .agn-company-hero h1 { font-size: 35px; }
  .agn-product-detail-image { min-height: 280px; }
  .agn-product-detail-copy { padding: 22px 18px; }
  .agn-product-detail-copy h2 { font-size: 25px; line-height: 1.2; }
  .agn-price-pair > div { padding: 12px; }
  .agn-price-table-wrap { position: relative; overscroll-behavior-x: contain; scrollbar-width: thin; }
  .agn-price-table { min-width: 560px; }
  .agn-price-table th, .agn-price-table td { padding: 12px; white-space: nowrap; }

  .agn-dealer-hero { gap: 25px; padding: 28px 20px; }
  .agn-package-value { min-height: 190px; max-width: 190px; }
  .agn-package-value strong { font-size: 41px; }
  .agn-included-grid article { padding: 22px 20px; }
  .agn-tieup-section { gap: 25px; padding: 30px 20px; }
  .agn-interest-card, .agn-contact-card { padding: 30px 18px; }
  .agn-interest-card input, .agn-contact-card input, .agn-contact-card select { min-height: 48px; }
  .agn-contact-card textarea { min-height: 120px; }
  .agn-interest-card form .button, .agn-contact-card form .button { min-height: 48px; }
  .agn-email-form-note { font-size: 9px !important; }

  .agn-field-hero { min-height: 430px; padding: 27px 20px; }
  .agn-field-purpose-grid { grid-template-columns: repeat(2, 1fr); }
  .agn-field-purpose-grid article { min-height: 92px; flex-direction: column; align-items: flex-start; justify-content: center; }
  .agn-community-story { gap: 25px; }
  .agn-community-story img { aspect-ratio: 3 / 2; }
  .agn-founders-message > div { padding: 30px 22px; }
  .agn-founders-message blockquote { font-size: 24px; }
  .agn-founders-message > img { min-height: 340px; }

  .agn-company-hero { padding: 25px 18px; }
  .agn-company-hero > img { max-width: 220px; }
  .agn-vision-mission article { padding: 24px 20px; }
  .agn-values-grid { grid-template-columns: repeat(2, 1fr); }
  .agn-values-grid article { min-height: 100px; margin: 0; }
  .agn-contact-list a, .agn-contact-list span { min-width: 0; }
  .agn-contact-list span span, .agn-contact-list a span { min-width: 0; overflow-wrap: anywhere; }

  .agn-home-footer { grid-template-columns: 1fr 1fr; padding: 36px 21px 22px; }
  .agn-footer-brand img { width: 155px; }
  .agn-footer-bottom { line-height: 1.55; }

  .agn-panel { overflow-y: auto; padding-bottom: calc(24px + var(--f7-safe-area-bottom)); }
  .agn-panel-actions { position: static; margin-top: 18px; }
  .agn-panel-actions .button { min-height: 46px; }
  .agn-tabbar { height: calc(60px + var(--f7-safe-area-bottom)); padding-bottom: var(--f7-safe-area-bottom); background: var(--agn-surface); }
  .agn-tabbar .toolbar-inner > a { min-width: 0; min-height: 56px; }
  .agn-tabbar .icon { font-size: 21px; }
  .agn-tabbar .tabbar-label { max-width: 66px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}

@media (max-width: 380px) {
  .agn-page-content { padding-left: 12px; padding-right: 12px; }
  .agn-hero.card { padding-left: 17px; padding-right: 17px; }
  .agn-hero-badge { max-width: 100%; white-space: normal; }
  .agn-hero-assurance { grid-template-columns: 1fr; }
  .agn-hero-visual { min-height: 280px; }
  .agn-hero-mark { width: 132px; }
  .agn-hero-location { padding: 9px 10px; }
  .agn-trust-rail { grid-template-columns: 1fr; }
  .agn-trust-rail > div:nth-of-type(even) { border-left: 0; }
  .agn-price-pair { grid-template-columns: 1fr; }
  .agn-field-purpose-grid, .agn-values-grid { grid-template-columns: 1fr; }
  .agn-signatures { grid-template-columns: 1fr; }
  .agn-home-footer { grid-template-columns: 1fr; }
  .agn-home-footer > div, .agn-home-footer > div:nth-of-type(4), .agn-footer-brand { grid-column: 1; }
}

/* Functional light and dark theme states — v7 */
html { color-scheme: light; background: var(--agn-surface); }
html.dark { color-scheme: dark; background: var(--agn-surface); }
html.dark body, html.dark #app, html.dark .views, html.dark .view { background: var(--agn-surface); color: var(--agn-ink); }
.switch-theme { transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease; }
.switch-theme:active { transform: scale(.94); }
html.dark .switch-theme .f7-icons { color: var(--agn-gold-light); }
html.dark .agn-theme-button { border-color: rgba(240,196,84,.28); background: rgba(240,196,84,.08); }
html.dark input, html.dark textarea, html.dark select { color-scheme: dark; }
html.dark .agn-tabbar { border-top-color: rgba(255,255,255,.08); }
html.dark .agn-tabbar .tab-link-active { color: var(--agn-gold-light); }

@media (prefers-reduced-motion: reduce) {
  .switch-theme { transition: none; }
}

/* PWA installation control — v8 */
.agn-install-button[hidden] { display: none !important; }
.agn-install-button {
  position: fixed;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 10500;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 19px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(135deg, var(--agn-green), var(--agn-green-deep));
  box-shadow: 0 15px 38px rgba(0,34,79,.24);
  font-family: "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.agn-install-button:hover { transform: translateY(-2px); box-shadow: 0 18px 45px rgba(0,34,79,.3); }
.agn-install-button:active { transform: translateY(0) scale(.97); }
.agn-install-button .f7-icons { color: var(--agn-gold-light); font-size: 20px; }
html.dark .agn-install-button { border-color: rgba(240,196,84,.22); box-shadow: 0 15px 38px rgba(0,0,0,.4); }

@media (max-width: 699px) {
  .agn-install-button {
    right: max(14px, env(safe-area-inset-right));
    bottom: calc(74px + env(safe-area-inset-bottom));
    min-height: 46px;
    padding: 0 16px;
    font-size: 12px;
  }
}

@media (display-mode: standalone) {
  .agn-install-button { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  .agn-install-button { transition: none; }
}

/* Landing-page conversion and business-flow readiness — v9 */
.agn-centered-heading { max-width: 760px; margin: 0 auto 38px; text-align: center; }
.agn-centered-heading h2, .agn-flow-heading h2 {
  margin: 11px 0 14px;
  color: var(--agn-ink);
  font-family: var(--agn-heading-font);
  font-size: clamp(35px, 4.2vw, 52px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.04em;
}
.agn-centered-heading p { max-width: 680px; margin: 0 auto; font-size: 14px; line-height: 1.75; }

.agn-pathways { padding: 10px 0 var(--agn-section-space); }
.agn-pathway-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.agn-pathway-card {
  position: relative;
  overflow: hidden;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 29px;
  border: 1px solid var(--agn-border);
  border-radius: var(--agn-radius-md);
  background: var(--agn-surface);
  box-shadow: var(--block-shadow);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.agn-pathway-card:hover { transform: translateY(-5px); border-color: rgba(199,148,27,.36); box-shadow: 0 20px 48px rgba(0,34,79,.12); }
.agn-pathway-featured { border-color: rgba(199,148,27,.36); background: linear-gradient(155deg, var(--agn-surface), var(--agn-cream)); }
.agn-pathway-featured::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg, var(--agn-gold), var(--agn-green)); }
.agn-pathway-top { display: flex; align-items: center; gap: 14px; }
.agn-pathway-top small { color: var(--agn-gold); font-size: 9px; font-weight: 700; letter-spacing: .11em; }
.agn-pathway-icon { width: 53px; height: 53px; flex: 0 0 53px; display: grid; place-items: center; border-radius: 16px; color: var(--agn-green); background: rgba(13,104,54,.09); }
.agn-pathway-featured .agn-pathway-icon { color: var(--agn-navy); background: rgba(199,148,27,.17); }
html.dark .agn-pathway-featured .agn-pathway-icon { color: var(--agn-gold-light); }
.agn-pathway-icon i { font-size: 25px; }
.agn-pathway-card h3 { margin: 28px 0 11px; color: var(--agn-ink); font-family: var(--agn-heading-font); font-size: 24px; font-weight: 600; line-height: 1.22; letter-spacing: -.025em; }
.agn-pathway-card p { flex: 1; margin: 0 0 25px; font-size: 12px; line-height: 1.75; }
.agn-pathway-link { min-height: 44px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 15px; border-top: 1px solid var(--agn-border); color: var(--agn-green); font-size: 12px; font-weight: 700; }
.agn-pathway-link i { font-size: 17px; transition: transform .2s ease; }
.agn-pathway-link:hover i { transform: translateX(4px); }

.agn-business-flow {
  overflow: hidden;
  position: relative;
  padding: clamp(44px, 6vw, 72px);
  margin-bottom: var(--agn-section-space);
  border-radius: var(--agn-radius-lg);
  color: #fff;
  background: linear-gradient(135deg, var(--agn-navy-deep), #00375b 58%, var(--agn-green-deep));
  box-shadow: 0 24px 65px rgba(0,34,79,.17);
}
.agn-business-flow::before { content: ""; position: absolute; width: 480px; height: 480px; right: -280px; top: -300px; border: 1px solid rgba(240,196,84,.15); border-radius: 50%; box-shadow: 0 0 0 70px rgba(240,196,84,.025), 0 0 0 140px rgba(240,196,84,.018); }
.agn-flow-heading { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 45px; align-items: end; }
.agn-flow-heading h2 { max-width: 660px; color: #fff; }
.agn-flow-heading > p { max-width: 520px; margin: 0 0 17px; color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.75; }
.agn-flow-steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 11px; padding: 0; margin: 40px 0 0; list-style: none; }
.agn-flow-steps li { min-height: 238px; padding: 22px 20px; border: 1px solid rgba(255,255,255,.12); border-radius: 17px; background: rgba(255,255,255,.055); backdrop-filter: blur(8px); }
.agn-flow-steps li > span { display: block; color: rgba(255,255,255,.32); font-family: var(--agn-heading-font); font-size: 11px; font-weight: 700; letter-spacing: .1em; }
.agn-flow-steps li > i { width: 44px; height: 44px; display: grid; place-items: center; margin: 26px 0 18px; border-radius: 13px; color: var(--agn-navy-deep); background: var(--agn-gold-light); font-size: 21px; }
.agn-flow-steps h3 { margin: 0 0 9px; color: #fff; font-family: var(--agn-heading-font); font-size: 17px; font-weight: 600; }
.agn-flow-steps p { margin: 0; color: rgba(255,255,255,.62); font-size: 10px; line-height: 1.7; }
.agn-flow-note { position: relative; display: flex; align-items: center; gap: 12px; padding: 15px 18px; margin-top: 14px; border: 1px solid rgba(240,196,84,.18); border-radius: 13px; color: rgba(255,255,255,.68); background: rgba(0,0,0,.12); font-size: 10px; line-height: 1.6; }
.agn-flow-note > i { flex: 0 0 auto; color: var(--agn-gold-light); font-size: 20px; }
.agn-flow-note strong { color: #fff; }

.agn-faq { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(38px, 7vw, 86px); align-items: start; padding: 0 clamp(8px, 3vw, 40px) var(--agn-section-space); }
.agn-faq .agn-centered-heading { position: sticky; top: 135px; margin: 0; text-align: left; }
.agn-faq .agn-centered-heading h2 { font-size: clamp(34px, 4vw, 48px); }
.agn-faq-list { border-top: 1px solid var(--agn-border); }
.agn-faq details { border-bottom: 1px solid var(--agn-border); }
.agn-faq summary { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 18px 2px; color: var(--agn-ink); font-family: var(--agn-heading-font); font-size: 16px; font-weight: 600; line-height: 1.4; cursor: pointer; list-style: none; }
.agn-faq summary::-webkit-details-marker { display: none; }
.agn-faq summary i { flex: 0 0 auto; color: var(--agn-green); font-size: 18px; transition: transform .2s ease; }
.agn-faq details[open] summary i { transform: rotate(180deg); }
.agn-faq details p { max-width: 720px; padding: 0 42px 24px 2px; margin: -4px 0 0; font-size: 12px; line-height: 1.8; }
.agn-faq summary:focus-visible { outline: 3px solid var(--agn-gold-light); outline-offset: 4px; border-radius: 4px; }

@media (max-width: 1023px) {
  .agn-pathway-grid { grid-template-columns: 1fr 1fr; }
  .agn-pathway-card:last-child { grid-column: 1 / -1; min-height: 290px; }
  .agn-flow-steps { grid-template-columns: 1fr 1fr; }
  .agn-flow-steps li { min-height: 210px; }
  .agn-faq { grid-template-columns: 1fr; }
  .agn-faq .agn-centered-heading { position: static; max-width: 720px; margin: 0; }
}

@media (max-width: 699px) {
  .agn-centered-heading { margin-bottom: 27px; text-align: left; }
  .agn-centered-heading h2, .agn-flow-heading h2 { font-size: 34px; }
  .agn-centered-heading p { font-size: 12px; }
  .agn-pathways { padding: 6px 6px 68px; }
  .agn-pathway-grid { grid-template-columns: 1fr; gap: 11px; }
  .agn-pathway-card, .agn-pathway-card:last-child { grid-column: auto; min-height: 0; padding: 24px 21px; }
  .agn-pathway-card:hover { transform: none; }
  .agn-pathway-card h3 { margin-top: 22px; font-size: 22px; }
  .agn-pathway-link { margin-top: 3px; }

  .agn-business-flow { padding: 36px 20px; margin-bottom: 68px; border-radius: var(--agn-radius-md); }
  .agn-flow-heading { grid-template-columns: 1fr; gap: 4px; }
  .agn-flow-heading > p { margin-bottom: 0; font-size: 12px; }
  .agn-flow-steps { grid-template-columns: 1fr; gap: 9px; margin-top: 29px; }
  .agn-flow-steps li { min-height: 0; display: grid; grid-template-columns: 42px 1fr; column-gap: 14px; padding: 18px; }
  .agn-flow-steps li > span { grid-column: 1 / -1; }
  .agn-flow-steps li > i { grid-row: 2 / 4; width: 42px; height: 42px; margin: 18px 0 0; }
  .agn-flow-steps h3 { margin-top: 18px; }
  .agn-flow-steps p { font-size: 10px; }
  .agn-flow-note { align-items: flex-start; }

  .agn-faq { gap: 20px; padding: 0 6px 68px; }
  .agn-faq .agn-centered-heading h2 { font-size: 34px; }
  .agn-faq summary { min-height: 68px; gap: 16px; padding: 15px 0; font-size: 14px; }
  .agn-faq details p { padding: 0 32px 20px 0; font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  .agn-pathway-card, .agn-pathway-link i, .agn-faq summary i { transition: none; }
}

/* Premium typography, spacing, and mobile refinement — v10 */
:root {
  --agn-font-sans: "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --agn-radius-sm: 14px;
  --agn-radius-md: 20px;
  --agn-radius-lg: 30px;
  --agn-section-space: clamp(70px, 8vw, 108px);
  --agn-border: rgba(0,34,79,.1);
  --agn-shadow-sm: 0 8px 28px rgba(0,34,79,.07);
  --agn-shadow-md: 0 18px 48px rgba(0,34,79,.11);
  --block-shadow: var(--agn-shadow-sm);
}
html.dark {
  --agn-border: rgba(255,255,255,.095);
  --agn-shadow-sm: 0 8px 28px rgba(0,0,0,.22);
  --agn-shadow-md: 0 18px 48px rgba(0,0,0,.32);
}

html { font-size: 16px; text-rendering: optimizeLegibility; }
body {
  font-family: var(--agn-font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -.006em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.agn-page-content { line-height: 1.68; }
.agn-page-content > * { width: min(1180px, calc(100% - 40px)); }
.agn-page-content h1, .agn-page-content h2, .agn-page-content h3 { text-wrap: balance; }
.agn-page-content p { text-wrap: pretty; }
.agn-eyebrow, .agn-kicker, .agn-product-body small, .agn-product-detail-copy small {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: .12em;
}
.agn-page-content .button, .agn-header-actions .button, .agn-panel .button {
  min-height: 46px;
  border-radius: 999px;
  font-family: var(--agn-font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}
.agn-text-link, .agn-light-link, .agn-pathway-link { font-size: 13px; }

/* Desktop navigation */
@media (min-width: 1024px) {
  .agn-header-ribbon { height: 30px; font-size: 10px; }
  .agn-header-main { height: 76px; }
  .agn-header-brand { gap: 12px; }
  .agn-header-brand img { width: 50px; height: 50px; }
  .agn-header-brand strong { font-size: 17px; font-weight: 600; letter-spacing: .035em; }
  .agn-header-brand small { font-size: 9px; }
  .agn-site-nav a { font-size: 12px; font-weight: 500; }
  .agn-header-actions .button { min-height: 40px; padding: 0 18px; font-size: 11px; }
  .agn-theme-button { width: 40px; height: 40px; }
  .agn-page-content { padding-top: 126px !important; }
}

/* First viewport */
.agn-hero.card {
  min-height: 620px;
  padding: clamp(48px, 6vw, 76px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--agn-radius-lg);
  box-shadow: 0 26px 70px rgba(0,24,58,.22);
}
.agn-hero-badge { font-size: 10px; font-weight: 600; letter-spacing: .12em; }
.agn-hero h1 {
  max-width: 680px;
  margin: 22px 0 20px;
  font-size: clamp(48px, 5.1vw, 70px);
  font-weight: 600;
  line-height: 1.01;
  letter-spacing: -.048em;
}
.agn-hero h1 em { color: var(--agn-gold-light); font-style: normal; }
.agn-hero p { max-width: 610px; font-size: clamp(16px, 1.25vw, 18px); line-height: 1.72; }
.agn-hero-actions { gap: 12px; margin-top: 28px; }
.agn-hero-actions .button { min-height: 50px; padding: 0 25px; font-size: 13px; }
.agn-hero-assurance { margin-top: 29px; }
.agn-hero-assurance span { font-size: 11px; line-height: 1.4; }
.agn-hero-visual { min-height: 470px; }
.agn-hero-image { box-shadow: 0 22px 55px rgba(0,0,0,.28); }
.agn-hero-mark span { font-size: 10px; }
.agn-hero-mark strong { font-size: 12px; }
.agn-hero-location span { font-size: 12px; }

/* Section rhythm and readable card copy */
.agn-trust-rail { margin-top: 16px; border-radius: var(--agn-radius-md); box-shadow: var(--agn-shadow-sm); }
.agn-trust-label { font-size: 18px; font-style: normal; font-weight: 500; }
.agn-trust-rail > div { min-height: 96px; }
.agn-trust-rail strong { font-size: 13px; font-weight: 600; }
.agn-trust-rail small { font-size: 10px; line-height: 1.5; }

.agn-display-heading, .agn-section-heading h2, .agn-home-dealer-copy h2, .agn-field-story-copy h2,
.agn-centered-heading h2, .agn-flow-heading h2, .agn-home-cta h2 {
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.038em;
}
.agn-display-heading { font-size: clamp(38px, 4vw, 52px); }
.agn-intro-copy > p { font-size: 16px; line-height: 1.78; }
.agn-pillar-grid { gap: 16px; }
.agn-pillar-grid article { min-height: 275px; padding: 29px 25px; border-color: var(--agn-border); box-shadow: var(--agn-shadow-sm); }
.agn-pillar-grid article > span { font-size: 50px; }
.agn-pillar-grid i { margin-top: 47px; }
.agn-pillar-grid h3 { font-size: 21px; }
.agn-pillar-grid p { font-size: 14px; line-height: 1.7; }

.agn-pathway-grid { gap: 18px; }
.agn-pathway-card { min-height: 355px; padding: 30px; box-shadow: var(--agn-shadow-sm); }
.agn-pathway-card h3 { font-size: 23px; line-height: 1.28; }
.agn-pathway-card p { font-size: 14px; line-height: 1.72; }
.agn-pathway-top small { font-size: 10px; line-height: 1.4; }
.agn-pathway-link { font-size: 13px; }

.agn-home-products { padding: clamp(54px, 6.3vw, 78px); box-shadow: inset 0 0 0 1px rgba(13,104,54,.045); }
.agn-section-heading { align-items: end; }
.agn-section-heading h2 { font-size: clamp(38px, 4vw, 52px); }
.agn-section-heading > p { font-size: 15px; line-height: 1.75; }
.agn-product-showcase { margin-top: 36px; }
.agn-product-showcase .agn-product-card { border: 1px solid var(--agn-border); box-shadow: var(--agn-shadow-sm); }
.agn-product-body.card-footer { min-height: 252px; padding: 25px; }
.agn-product-body h2 { font-size: 22px; line-height: 1.25; }
.agn-product-body p { min-height: 68px; font-size: 14px; line-height: 1.68; }
.agn-product-price span { font-size: 10px; }
.agn-product-price strong { font-size: 22px; }
.agn-catalog-button { min-height: 48px; font-size: 13px; }

.agn-partnership h2 { font-size: clamp(38px, 4vw, 52px); font-weight: 600; }
.agn-partnership p { font-size: 16px; line-height: 1.75; }
.agn-partner-name small { font-size: 9px; }
.agn-partner-name strong { font-size: 13px; }
.agn-light-link { font-size: 13px; }
.agn-partnership-photo > span { font-size: 12px; line-height: 1.5; }

.agn-home-dealer-copy h2 { font-size: clamp(40px, 4.3vw, 56px); }
.agn-home-dealer-copy > p { font-size: 16px; line-height: 1.76; }
.agn-home-dealer-copy li { font-size: 14px; line-height: 1.5; }
.agn-home-dealer-card > small { font-size: 10px; }
.agn-home-dealer-card > span { font-size: 12px; line-height: 1.6; }
.agn-home-dealer-card > div { max-width: 290px; font-size: 11px; line-height: 1.55; }

.agn-field-story-copy h2 { font-size: clamp(39px, 4.2vw, 54px); }
.agn-field-story-copy > p { font-size: 16px; line-height: 1.76; }
.agn-field-story-copy blockquote { font-size: 21px; line-height: 1.5; }
.agn-signatures span { font-size: 12px; }
.agn-signatures strong { font-size: 13px; }

.agn-flow-heading > p { font-size: 15px; line-height: 1.7; }
.agn-flow-steps { gap: 14px; }
.agn-flow-steps li { min-height: 245px; padding: 24px 22px; }
.agn-flow-steps h3 { font-size: 18px; }
.agn-flow-steps p { font-size: 13px; line-height: 1.65; }
.agn-flow-note { font-size: 12px; line-height: 1.6; }

.agn-faq summary { font-size: 17px; }
.agn-faq details p { font-size: 14px; line-height: 1.76; }
.agn-home-cta p { font-size: 15px; line-height: 1.72; }
.agn-cta-phone span { font-size: 14px; }
.agn-cta-phone small { font-size: 9px; }

/* Inner public pages */
.agn-page-hero p, .agn-dealer-hero p, .agn-field-hero p, .agn-company-hero p,
.agn-community-story p, .agn-founders-message p, .agn-vision-mission p { font-size: 15px; line-height: 1.75; }
.agn-product-detail-copy > p { font-size: 15px; line-height: 1.75; }
.agn-product-detail-copy h2 { font-size: 29px; line-height: 1.2; }
.agn-detail-note { font-size: 13px; line-height: 1.55; }
.agn-price-pair span { font-size: 11px; }
.agn-price-table th, .agn-price-table td { font-size: 13px; }
.agn-disclaimer, .agn-compliance-note p, .agn-legal-note p { font-size: 12px; line-height: 1.7; }
.agn-included-grid h2 { font-size: 20px; }
.agn-included-grid p, .agn-tieup-section p, .agn-vision-mission li { font-size: 14px; line-height: 1.65; }
.agn-tieup-grid span, .agn-field-purpose-grid span, .agn-values-grid span { font-size: 13px; }
.agn-interest-card h2, .agn-contact-card h2 { font-size: 34px; line-height: 1.16; }
.agn-interest-card p, .agn-contact-card p { font-size: 14px; line-height: 1.7; }
.agn-interest-card label, .agn-contact-card label { font-size: 12px; font-weight: 500; }
.agn-interest-card input, .agn-contact-card input, .agn-contact-card textarea, .agn-contact-card select { font-size: 16px; }
.agn-contact-list span span, .agn-contact-list a span { font-size: 12px; line-height: 1.55; }
.agn-contact-list strong { font-size: 13px; }

/* Footer typography */
.agn-home-footer { gap: 38px; padding-top: 58px; }
.agn-home-footer strong { font-size: 12px; letter-spacing: .08em; }
.agn-home-footer a, .agn-home-footer span { font-size: 12px; line-height: 1.65; }
.agn-footer-brand p { font-size: 14px; }
.agn-footer-bottom { font-size: 10px; line-height: 1.6; }

/* Tablet refinement */
@media (max-width: 1023px) {
  :root { --agn-section-space: 78px; }
  .agn-page-content > * { width: min(900px, calc(100% - 34px)); }
  .agn-hero.card { min-height: auto; padding: 48px 36px 38px; }
  .agn-hero h1 { max-width: 690px; font-size: clamp(46px, 7vw, 62px); }
  .agn-hero-visual { min-height: 400px; }
  .agn-pathway-card:last-child { min-height: 260px; }
  .agn-flow-steps li { min-height: 210px; }
}

/* Mobile-first readability and touch layout */
@media (max-width: 699px) {
  :root {
    --agn-section-space: 64px;
    --agn-radius-md: 17px;
    --agn-radius-lg: 22px;
  }
  body { font-size: 15px; line-height: 1.65; }
  .agn-page-content { padding-left: 0; padding-right: 0; }
  .agn-page-content > * { width: calc(100% - 28px); }
  .agn-eyebrow, .agn-kicker, .agn-product-body small, .agn-product-detail-copy small { font-size: 10px; }
  .agn-page-content .button, .agn-panel .button { min-height: 48px; font-size: 13px; }

  .agn-navbar .navbar-inner { padding-left: 4px; padding-right: 4px; }
  .agn-navbar .title, .agn-navbar-title { font-size: 14px; }
  .agn-navbar .title-large-text { font-size: 28px; font-weight: 600; letter-spacing: -.025em; }

  .agn-hero.card { width: calc(100% - 20px); min-height: auto; padding: 30px 18px 20px; border-radius: 22px; }
  .agn-hero-badge { font-size: 9px; line-height: 1.35; }
  .agn-hero h1 { margin: 18px 0 15px; font-size: clamp(37px, 11.5vw, 48px); line-height: 1.02; letter-spacing: -.043em; }
  .agn-hero p { font-size: 15px; line-height: 1.67; }
  .agn-hero-actions { gap: 9px; margin-top: 23px; }
  .agn-hero-actions .button { min-height: 49px; font-size: 13px; }
  .agn-hero-assurance { grid-template-columns: 1fr; gap: 9px; margin-top: 24px; }
  .agn-hero-assurance span { font-size: 11px; }
  .agn-hero-visual { min-height: 260px; margin-top: 2px; }
  .agn-hero-image { inset: 0 0 25px; border-radius: 80px 17px 68px 17px; }
  .agn-hero-mark { left: -2px; top: 14px; width: 132px; }
  .agn-hero-location { right: -2px; bottom: 0; }

  .agn-trust-rail { width: calc(100% - 28px); margin-top: 10px; }
  .agn-trust-label { min-height: 52px; font-size: 16px; }
  .agn-trust-rail > div { min-height: 82px; padding: 13px 11px; }
  .agn-trust-rail strong { font-size: 11px; }

  .agn-home-intro { gap: 32px; padding-top: 62px; padding-bottom: 62px; }
  .agn-display-heading, .agn-section-heading h2, .agn-home-dealer-copy h2,
  .agn-field-story-copy h2, .agn-centered-heading h2, .agn-flow-heading h2, .agn-home-cta h2 { font-size: 33px; line-height: 1.12; }
  .agn-intro-copy > p, .agn-section-heading > p, .agn-home-dealer-copy > p,
  .agn-field-story-copy > p, .agn-centered-heading p, .agn-flow-heading > p { font-size: 14px; line-height: 1.72; }
  .agn-pillar-grid article { min-height: 0; padding: 23px 20px; }
  .agn-pillar-grid article > span { font-size: 42px; }
  .agn-pillar-grid i { margin-top: 20px; }
  .agn-pillar-grid h3 { margin-top: 18px; font-size: 20px; }
  .agn-pillar-grid p { font-size: 14px; }

  .agn-pathways { padding-bottom: 64px; }
  .agn-pathway-card, .agn-pathway-card:last-child { padding: 23px 20px; }
  .agn-pathway-card h3 { font-size: 21px; }
  .agn-pathway-card p { font-size: 14px; }
  .agn-pathway-link { min-height: 46px; font-size: 13px; }

  .agn-home-products { width: calc(100% - 20px); padding: 45px 0; }
  .agn-home-products > .agn-section-heading, .agn-home-products > .agn-catalog-button { margin-left: 18px; margin-right: 18px; }
  .agn-product-showcase { margin-top: 25px; }
  .agn-product-image { height: 245px; }
  .agn-product-body.card-footer { min-height: 240px; padding: 22px 19px; }
  .agn-product-body h2 { font-size: 21px; }
  .agn-product-body p { min-height: 0; font-size: 14px; }

  .agn-partnership.card { width: calc(100% - 20px); }
  .agn-partnership-copy { padding: 35px 20px; }
  .agn-partnership h2 { font-size: 34px; }
  .agn-partnership p { font-size: 14px; }
  .agn-partnership-photo > span { font-size: 11px; }

  .agn-home-dealer { padding-top: 64px; padding-bottom: 64px; }
  .agn-home-dealer-copy li { align-items: flex-start; font-size: 13px; }
  .agn-home-dealer-card.card { min-height: 340px; padding: 31px 22px; }
  .agn-home-dealer-card > strong { font-size: 48px; }
  .agn-home-dealer-card > span { font-size: 11px; }
  .agn-home-dealer-card > div { font-size: 10px; }

  .agn-field-story { padding-bottom: 64px; }
  .agn-field-story-copy blockquote { font-size: 18px; }
  .agn-signatures span { font-size: 11px; }

  .agn-business-flow { width: calc(100% - 20px); padding: 33px 18px; margin-bottom: 64px; }
  .agn-flow-steps li { grid-template-columns: 44px 1fr; padding: 18px; }
  .agn-flow-steps h3 { font-size: 17px; }
  .agn-flow-steps p { font-size: 13px; line-height: 1.6; }
  .agn-flow-note { font-size: 11px; }

  .agn-faq { gap: 17px; padding-bottom: 64px; }
  .agn-faq summary { min-height: 70px; font-size: 15px; line-height: 1.45; }
  .agn-faq details p { padding-right: 26px; font-size: 14px; line-height: 1.72; }
  .agn-home-cta { width: calc(100% - 20px); padding: 32px 19px; }
  .agn-home-cta p { font-size: 14px; }

  .agn-page-hero, .agn-dealer-hero, .agn-company-hero { padding: 27px 19px; }
  .agn-page-hero h1, .agn-dealer-hero h1, .agn-field-hero h1, .agn-company-hero h1 { font-size: 34px; line-height: 1.1; }
  .agn-page-hero p, .agn-dealer-hero p, .agn-field-hero p, .agn-company-hero p,
  .agn-community-story p, .agn-founders-message p, .agn-vision-mission p { font-size: 14px; }
  .agn-product-detail-copy { padding: 23px 18px; }
  .agn-product-detail-copy h2 { font-size: 25px; }
  .agn-product-detail-copy > p { font-size: 14px; }
  .agn-detail-note { font-size: 12px; }
  .agn-price-table th, .agn-price-table td { font-size: 12px; }
  .agn-disclaimer, .agn-compliance-note p, .agn-legal-note p { font-size: 12px; }
  .agn-included-grid p, .agn-tieup-section p, .agn-vision-mission li { font-size: 14px; }
  .agn-interest-card, .agn-contact-card { padding: 28px 18px; }
  .agn-interest-card h2, .agn-contact-card h2 { font-size: 30px; }
  .agn-interest-card p, .agn-contact-card p { font-size: 14px; }
  .agn-interest-card input, .agn-contact-card input, .agn-contact-card textarea, .agn-contact-card select { min-height: 48px; font-size: 16px; }

  .agn-tabbar { background: color-mix(in srgb, var(--agn-surface) 92%, transparent); backdrop-filter: blur(16px); }
  .agn-tabbar .tabbar-label { font-size: 10px; }
  .agn-tabbar .toolbar-inner > a { min-height: 58px; }

  .agn-home-footer { gap: 30px; padding: 38px 20px 24px; }
  .agn-home-footer a, .agn-home-footer span { font-size: 12px; }
  .agn-footer-brand p { font-size: 13px; }
}

@media (max-width: 520px) {
  .agn-home-footer { grid-template-columns: 1fr; }
  .agn-home-footer > div, .agn-home-footer > div:nth-of-type(4), .agn-footer-brand { grid-column: 1; }
  .agn-home-footer > div:not(.agn-footer-brand) { padding-top: 4px; border-top: 1px solid rgba(255,255,255,.08); }
}

@media (max-width: 380px) {
  .agn-page-content > * { width: calc(100% - 20px); }
  .agn-hero.card { width: calc(100% - 12px); padding-left: 15px; padding-right: 15px; }
  .agn-hero h1 { font-size: 36px; }
  .agn-hero-visual { min-height: 235px; }
  .agn-hero-mark { width: 50px; padding: 5px; }
  .agn-hero-mark img { width: 39px; height: 39px; flex-basis: 39px; }
  .agn-hero-mark span { display: none; }
  .agn-hero-location { padding: 9px 10px; }
  .agn-trust-rail { width: calc(100% - 20px); }
  .agn-home-products, .agn-partnership.card, .agn-business-flow, .agn-home-cta { width: calc(100% - 12px); }
}

/* Purposeful AI-generated brand photography — v11 */
.agn-hero-image img {
  object-position: 64% 50%;
  filter: saturate(.94) contrast(1.02);
}
.agn-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0,34,79,.08), transparent 48%, rgba(0,22,51,.18));
  pointer-events: none;
}

.agn-home-dealer-card.card {
  isolation: isolate;
  min-height: 480px;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  background: var(--agn-navy-deep);
  text-align: left;
  box-shadow: 0 27px 70px rgba(0,34,79,.24);
}
.agn-home-dealer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  width: auto;
  height: auto;
  border: 0;
  border-radius: inherit;
  background: linear-gradient(to top, rgba(0,22,51,.98) 0%, rgba(0,22,51,.84) 38%, rgba(0,22,51,.2) 74%, rgba(0,22,51,.04) 100%);
  box-shadow: none;
  pointer-events: none;
}
.agn-home-dealer-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 3;
  border: 1px solid rgba(240,196,84,.2);
  border-radius: calc(var(--agn-radius-lg) - 8px);
  pointer-events: none;
}
.agn-home-dealer-card > img.agn-home-dealer-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: inherit;
  background: transparent;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(.82) contrast(1.04);
}
.agn-home-dealer-card > img.agn-home-dealer-emblem {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  margin: 0 0 17px;
  padding: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  object-fit: contain;
  box-shadow: 0 10px 25px rgba(0,0,0,.2);
}
.agn-home-dealer-card > small,
.agn-home-dealer-card > strong,
.agn-home-dealer-card > span,
.agn-home-dealer-card > div { z-index: 2; }
.agn-home-dealer-card > small { font-size: 9px; }
.agn-home-dealer-card > strong { margin: 5px 0; font-size: 52px; line-height: 1; }
.agn-home-dealer-card > span { max-width: 280px; font-size: 11px; }
.agn-home-dealer-card > div { max-width: 310px; margin-top: 20px; border: 1px solid rgba(255,255,255,.09); background: rgba(0,22,51,.58); backdrop-filter: blur(8px); }

@media (max-width: 1023px) {
  .agn-home-dealer-card.card { min-height: 500px; }
}

@media (max-width: 699px) {
  .agn-hero-image img { object-position: 62% center; }
  .agn-home-dealer-card.card { min-height: 420px; padding: 28px 25px; }
  .agn-home-dealer-card > img.agn-home-dealer-photo { object-position: 50% center; }
  .agn-home-dealer-card > img.agn-home-dealer-emblem { width: 60px; height: 60px; flex-basis: 60px; }
  .agn-home-dealer-card > strong { font-size: 46px; }
}

@media (max-width: 380px) {
  .agn-home-dealer-card.card { min-height: 400px; padding: 25px 21px; }
  .agn-home-dealer-card::after { inset: 8px; }
}
