/* ==========================================================================
   Advisorbriefs — abrf.css
   Brand prefix: abrf
   Palette: Deep Navy #0F2044 / Warm Off-White #F8F6F1 / Muted Gold #C19A5B
            Charcoal Slate #2C3547 / Mid Slate #5A6478 / Sage Green #4A7C59
            Warm Pebble #DED9D0 / Light Pebble #EEEBe5
   Typography: Playfair Display (headlines) + Inter (body) + JetBrains Mono (mono)
   ========================================================================== */

/* --------------------------------------------------------------------------
   Custom Properties
   -------------------------------------------------------------------------- */
:root {
  --navy:        #0F2044;
  --navy-deep:   #0A1830;
  --off-white:   #F8F6F1;
  --gold:        #C19A5B;
  --gold-light:  #D4B07A;
  --charcoal:    #2C3547;
  --slate-mid:   #5A6478;
  --slate-light: #8492A8;
  --sage:        #4A7C59;
  --pebble:      #DED9D0;
  --surface:     #EEEBe5;
  --white:       #FFFFFF;

  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:   'JetBrains Mono', 'Fira Code', Consolas, monospace;

  --radius-sm:   2px;
  --radius-md:   4px;
  --radius-lg:   8px;
  --radius-full: 50%;

  --shadow-card: 0 2px 12px rgba(15,32,68,0.08);
  --shadow-nav:  0 1px 24px rgba(15,32,68,0.12);

  --section-pad: clamp(64px, 8vw, 112px);
  --container:   1200px;
  --container-narrow: 760px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--charcoal);
  background-color: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  max-width: 100%;
  display: block;
}

a {
  color: var(--navy);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

ul, ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   Typography Scale
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: clamp(36px, 5vw, 56px); }
h2 { font-size: clamp(28px, 3.5vw, 42px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
h4 { font-size: clamp(17px, 2vw, 20px); }
h5 { font-size: 16px; }
h6 { font-size: 14px; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   Layout Utilities
   -------------------------------------------------------------------------- */
.abrf-container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 5vw, 60px);
  padding-right: clamp(20px, 5vw, 60px);
}

.abrf-container--narrow {
  max-width: var(--container-narrow);
}

.abrf-section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

.abrf-section--navy {
  background-color: var(--navy);
  color: var(--white);
}

.abrf-section--navy h1,
.abrf-section--navy h2,
.abrf-section--navy h3,
.abrf-section--navy h4 {
  color: var(--white);
}

.abrf-section--white {
  background-color: var(--white);
}

.abrf-section--surface {
  background-color: var(--surface);
}

.abrf-section--off-white {
  background-color: var(--off-white);
}

/* --------------------------------------------------------------------------
   Gold Rule Decorative Accent
   -------------------------------------------------------------------------- */
.abrf-gold-rule {
  display: block;
  width: 48px;
  height: 2px;
  background-color: var(--gold);
  margin-bottom: 20px;
}

.abrf-gold-rule--centered {
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   Section Labels / Eyebrows
   -------------------------------------------------------------------------- */
.abrf-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.abrf-section--navy .abrf-eyebrow {
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.abrf-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: var(--navy);
  box-shadow: var(--shadow-nav);
  height: 72px;
  display: flex;
  align-items: center;
}

.abrf-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.abrf-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.abrf-nav__logo-img {
  height: 36px;
  width: auto;
}

.abrf-nav__logo-text {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

.abrf-nav__logo-text em {
  color: var(--gold);
  font-style: italic;
}

.abrf-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.abrf-nav__link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s;
  white-space: nowrap;
}

.abrf-nav__link:hover {
  color: var(--gold);
  text-decoration: none;
}

.abrf-nav__link--active {
  color: var(--white);
}

.abrf-nav__utility {
  display: flex;
  align-items: center;
  gap: 20px;
}

.abrf-nav__login {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.abrf-nav__login:hover {
  color: var(--white);
  text-decoration: none;
}

.abrf-btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  background-color: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  white-space: nowrap;
  text-decoration: none;
}

.abrf-btn-nav:hover {
  background-color: var(--gold-light);
  color: var(--navy);
  text-decoration: none;
}

.abrf-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.abrf-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--white);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

.abrf-nav__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.abrf-nav__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.abrf-nav__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.abrf-nav__drawer {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--navy);
  z-index: 99;
  padding: 32px clamp(20px, 5vw, 40px);
  overflow-y: auto;
  flex-direction: column;
  gap: 0;
}

.abrf-nav__drawer.is-open {
  display: flex;
}

.abrf-nav__drawer-link {
  display: block;
  font-size: 20px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
  font-family: var(--font-head);
}

.abrf-nav__drawer-link:hover {
  color: var(--gold);
  text-decoration: none;
}

.abrf-nav__drawer-cta {
  margin-top: 32px;
  display: inline-flex;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  background-color: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.abrf-nav__drawer-cta:hover {
  background-color: var(--gold-light);
  text-decoration: none;
}

/* Nav spacer */
.abrf-nav-spacer {
  height: 72px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.abrf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  line-height: 1;
  white-space: nowrap;
}

.abrf-btn--primary {
  font-size: 15px;
  padding: 14px 28px;
  background-color: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-sm);
}

.abrf-btn--primary:hover {
  background-color: var(--gold-light);
  color: var(--navy);
  text-decoration: none;
}

.abrf-btn--primary-navy {
  font-size: 15px;
  padding: 14px 28px;
  background-color: var(--navy);
  color: var(--white);
  border-radius: var(--radius-sm);
}

.abrf-btn--primary-navy:hover {
  background-color: var(--navy-deep);
  text-decoration: none;
}

.abrf-btn--secondary {
  font-size: 14px;
  padding: 13px 26px;
  background-color: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-sm);
}

.abrf-btn--secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  text-decoration: none;
}

.abrf-btn--ghost-dark {
  font-size: 14px;
  padding: 13px 26px;
  background-color: transparent;
  color: var(--navy);
  border: 1.5px solid var(--pebble);
  border-radius: var(--radius-sm);
}

.abrf-btn--ghost-dark:hover {
  border-color: var(--navy);
  text-decoration: none;
}

.abrf-btn--text-arrow {
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  background: none;
  padding: 0;
  border-radius: 0;
  gap: 6px;
}

.abrf-btn--text-arrow:hover {
  color: var(--gold-light);
  text-decoration: none;
}

.abrf-btn--text-arrow::after {
  content: '→';
  display: inline;
}

.abrf-btn--large {
  font-size: 16px;
  padding: 16px 36px;
}

/* --------------------------------------------------------------------------
   Hero — Split Layout
   -------------------------------------------------------------------------- */
.abrf-hero {
  background-color: var(--navy);
  padding-top: calc(72px + 80px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.abrf-hero__bg-texture {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 30px,
    rgba(193,154,91,0.03) 30px,
    rgba(193,154,91,0.03) 31px
  );
  pointer-events: none;
}

.abrf-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.abrf-hero__text {
  max-width: 560px;
}

.abrf-hero__gold-rule {
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--gold);
  margin-bottom: 24px;
}

.abrf-hero__headline {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.abrf-hero__subhead {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 36px;
}

.abrf-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.abrf-hero__proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}

.abrf-hero__proof-dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background-color: var(--sage);
  flex-shrink: 0;
}

.abrf-hero__image {
  position: relative;
}

.abrf-hero__image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

/* --------------------------------------------------------------------------
   Trust Strip (Logos)
   -------------------------------------------------------------------------- */
.abrf-trust-strip {
  background-color: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--pebble);
}

.abrf-trust-strip__label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: 24px;
}

.abrf-trust-strip__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.abrf-trust-strip__logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.45;
  transition: opacity 0.2s;
}

.abrf-trust-strip__logo-item:hover {
  opacity: 0.65;
}

.abrf-trust-strip__logo-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Workflow / 3-Step Process
   -------------------------------------------------------------------------- */
.abrf-workflow {
  background-color: var(--off-white);
}

.abrf-workflow__header {
  text-align: center;
  margin-bottom: 56px;
}

.abrf-workflow__header h2 {
  color: var(--charcoal);
  margin-bottom: 12px;
}

.abrf-workflow__header p {
  font-size: 17px;
  color: var(--slate-mid);
  max-width: 520px;
  margin: 0 auto;
}

.abrf-workflow__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.abrf-workflow__steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(16.666% + 16px);
  right: calc(16.666% + 16px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--pebble) 100%);
  pointer-events: none;
}

.abrf-workflow__step {
  text-align: center;
  padding: 40px 24px;
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--pebble);
  box-shadow: var(--shadow-card);
  position: relative;
}

.abrf-workflow__step-num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background-color: var(--navy);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abrf-workflow__step-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.abrf-workflow__step-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.abrf-workflow__step h3 {
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.abrf-workflow__step p {
  font-size: 14.5px;
  color: var(--slate-mid);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Feature Alternating Blocks
   -------------------------------------------------------------------------- */
.abrf-feature-block {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

.abrf-feature-block--navy {
  background-color: var(--navy);
}

.abrf-feature-block--white {
  background-color: var(--white);
}

.abrf-feature-block--off-white {
  background-color: var(--off-white);
}

.abrf-feature-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.abrf-feature-block__inner--reverse {
  direction: rtl;
}

.abrf-feature-block__inner--reverse > * {
  direction: ltr;
}

.abrf-feature-block__content {}

.abrf-feature-block__content h2 {
  margin-bottom: 16px;
  color: var(--charcoal);
}

.abrf-feature-block--navy .abrf-feature-block__content h2 {
  color: var(--white);
}

.abrf-feature-block__content p {
  font-size: 16px;
  color: var(--slate-mid);
  margin-bottom: 20px;
  line-height: 1.65;
}

.abrf-feature-block--navy .abrf-feature-block__content p {
  color: rgba(255,255,255,0.72);
}

.abrf-feature-block__image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

/* --------------------------------------------------------------------------
   Trust Band (Security Snippet)
   -------------------------------------------------------------------------- */
.abrf-trust-band {
  background-color: var(--navy);
  padding: 48px 0;
}

.abrf-trust-band__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.abrf-trust-band__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.abrf-trust-band__icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  font-size: 22px;
  display: flex;
  align-items: center;
}

.abrf-trust-band__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.abrf-trust-band__desc {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.abrf-trust-band__footer {
  text-align: center;
  margin-top: 32px;
}

.abrf-trust-band__link {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
}

.abrf-trust-band__link:hover {
  color: var(--gold-light);
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.abrf-testimonials {
  background-color: var(--off-white);
}

.abrf-testimonials__header {
  text-align: center;
  margin-bottom: 48px;
}

.abrf-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.abrf-testimonial-card {
  background-color: var(--white);
  border: 1px solid var(--pebble);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abrf-testimonial-card__quote {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--charcoal);
  flex: 1;
}

.abrf-testimonial-card__quote::before {
  content: '\201C';
  color: var(--gold);
  font-size: 40px;
  line-height: 0;
  vertical-align: -0.5em;
  margin-right: 4px;
}

.abrf-testimonial-card__attr {
  font-size: 12px;
  font-weight: 600;
  color: var(--slate-mid);
  letter-spacing: 0.03em;
  padding-top: 12px;
  border-top: 1px solid var(--pebble);
}

/* --------------------------------------------------------------------------
   Founder CTA Block
   -------------------------------------------------------------------------- */
.abrf-founder-cta {
  background-color: var(--navy);
  padding: var(--section-pad) 0;
}

.abrf-founder-cta__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

.abrf-founder-cta__portrait {
  flex-shrink: 0;
}

.abrf-founder-cta__portrait img {
  width: 160px;
  height: 160px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 6px rgba(193,154,91,0.15);
}

.abrf-founder-cta__content {}

.abrf-founder-cta__content h2 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: clamp(26px, 3vw, 38px);
}

.abrf-founder-cta__content p {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 28px;
  max-width: 560px;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.abrf-footer {
  background-color: var(--navy-deep);
  padding: 72px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.abrf-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.abrf-footer__logo-text {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  display: block;
}

.abrf-footer__logo-text em {
  color: var(--gold);
  font-style: italic;
}

.abrf-footer__tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  margin-bottom: 20px;
  max-width: 260px;
}

.abrf-footer__contact p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}

.abrf-footer__contact a {
  color: rgba(255,255,255,0.72);
}

.abrf-footer__contact a:hover {
  color: var(--gold);
  text-decoration: none;
}

.abrf-footer__col-head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.abrf-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.abrf-footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  transition: color 0.2s;
}

.abrf-footer__links a:hover {
  color: var(--white);
  text-decoration: none;
}

.abrf-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.abrf-footer__copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.abrf-footer__disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
  max-width: 700px;
}

/* --------------------------------------------------------------------------
   Page Hero (sub-pages)
   -------------------------------------------------------------------------- */
.abrf-page-hero {
  background-color: var(--navy);
  padding: calc(72px + 64px) 0 64px;
}

.abrf-page-hero--with-image {
  position: relative;
  overflow: hidden;
}

.abrf-page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.abrf-page-hero__headline {
  color: var(--white);
  margin-bottom: 16px;
}

.abrf-page-hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  max-width: 560px;
}

.abrf-page-hero__image-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.abrf-page-hero__image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

/* --------------------------------------------------------------------------
   Integrations
   -------------------------------------------------------------------------- */
.abrf-integration-section {
  padding: var(--section-pad) 0;
}

.abrf-integration-section__header {
  margin-bottom: 40px;
}

.abrf-integration-section__header h2 {
  margin-bottom: 8px;
}

.abrf-integration-section__header p {
  font-size: 15px;
  color: var(--slate-mid);
}

.abrf-integration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.abrf-integration-card {
  background-color: var(--white);
  border: 1px solid var(--pebble);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s;
}

.abrf-integration-card:hover {
  box-shadow: 0 4px 20px rgba(15,32,68,0.12);
}

.abrf-integration-card__logo-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 20px;
  color: var(--navy);
}

.abrf-integration-card__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.abrf-integration-card__desc {
  font-size: 13px;
  color: var(--slate-mid);
  line-height: 1.55;
  margin-bottom: 0;
}

.abrf-integration-card--coming-soon {
  opacity: 0.55;
}

.abrf-integration-card__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  background-color: var(--surface);
  color: var(--slate-mid);
  margin-top: 8px;
}

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */
.abrf-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
}

.abrf-pricing-card {
  background-color: var(--white);
  border: 1.5px solid var(--pebble);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.abrf-pricing-card--featured {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(193,154,91,0.15);
  position: relative;
}

.abrf-pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.abrf-pricing-card__tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-mid);
  margin-bottom: 8px;
}

.abrf-pricing-card__price {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.abrf-pricing-card__price sub {
  font-size: 18px;
  vertical-align: super;
  margin-right: 2px;
}

.abrf-pricing-card__price-note {
  font-size: 12px;
  color: var(--slate-mid);
  margin-bottom: 20px;
}

.abrf-pricing-card__desc {
  font-size: 14px;
  color: var(--slate-mid);
  margin-bottom: 24px;
  line-height: 1.55;
}

.abrf-pricing-card__divider {
  border: none;
  border-top: 1px solid var(--pebble);
  margin: 20px 0;
}

.abrf-pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}

.abrf-pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.45;
}

.abrf-pricing-card__feature-icon {
  flex-shrink: 0;
  color: var(--sage);
  font-size: 14px;
  margin-top: 1px;
}

/* Feature comparison table */
.abrf-feature-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 40px 0;
}

.abrf-feature-table th {
  text-align: left;
  padding: 12px 16px;
  background-color: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 13px;
}

.abrf-feature-table th:not(:first-child) {
  text-align: center;
}

.abrf-feature-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--pebble);
  color: var(--charcoal);
}

.abrf-feature-table td:not(:first-child) {
  text-align: center;
  color: var(--slate-mid);
}

.abrf-feature-table tr:nth-child(even) td {
  background-color: var(--surface);
}

.abrf-feature-table .check {
  color: var(--sage);
  font-size: 16px;
}

.abrf-feature-table .cross {
  color: var(--slate-light);
  font-size: 14px;
}

/* --------------------------------------------------------------------------
   Security Page
   -------------------------------------------------------------------------- */
.abrf-security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.abrf-security-card {
  background-color: var(--white);
  border: 1px solid var(--pebble);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.abrf-security-card__icon {
  width: 44px;
  height: 44px;
  background-color: rgba(15,32,68,0.06);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 14px;
}

.abrf-security-card h3 {
  font-size: 17px;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.abrf-security-card p {
  font-size: 14px;
  color: var(--slate-mid);
  line-height: 1.6;
  margin-bottom: 0;
}

.abrf-mono-callout {
  font-family: var(--font-mono);
  font-size: 12px;
  background-color: var(--surface);
  border: 1px solid var(--pebble);
  border-left: 3px solid var(--gold);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  color: var(--charcoal);
  margin: 12px 0;
  overflow-x: auto;
}

/* --------------------------------------------------------------------------
   Customers / Case Studies
   -------------------------------------------------------------------------- */
.abrf-case-study {
  background-color: var(--white);
  border: 1px solid var(--pebble);
  border-radius: var(--radius-md);
  padding: 36px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
}

.abrf-case-study__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--pebble);
}

.abrf-case-study__avatar {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background-color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.abrf-case-study__meta h3 {
  font-size: 15px;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.abrf-case-study__meta p {
  font-size: 12px;
  color: var(--slate-mid);
  margin-bottom: 0;
}

.abrf-case-study__quote {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 18px;
  color: var(--charcoal);
  line-height: 1.55;
  margin-bottom: 16px;
}

.abrf-case-study__quote::before {
  content: '\201C';
  color: var(--gold);
  font-size: 36px;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 4px;
}

.abrf-case-study__details p {
  font-size: 14.5px;
  color: var(--slate-mid);
  line-height: 1.65;
  margin-bottom: 0;
}

.abrf-quote-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.abrf-quote-pill {
  background-color: var(--white);
  border: 1px solid var(--pebble);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.abrf-quote-pill__text {
  font-size: 14.5px;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 12px;
}

.abrf-quote-pill__attr {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--slate-mid);
  letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   About Page
   -------------------------------------------------------------------------- */
.abrf-founder-section {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}

.abrf-founder-section__portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.abrf-founder-section__content h2 {
  margin-bottom: 8px;
}

.abrf-founder-section__content p {
  font-size: 16px;
  color: var(--slate-mid);
  line-height: 1.7;
}

.abrf-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.abrf-team-card {
  text-align: center;
}

.abrf-team-card__portrait {
  width: 96px;
  height: 96px;
  border-radius: var(--radius-full);
  object-fit: cover;
  margin: 0 auto 14px;
  display: block;
  border: 2px solid var(--pebble);
}

.abrf-team-card__avatar {
  width: 96px;
  height: 96px;
  border-radius: var(--radius-full);
  background-color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 28px;
  color: var(--gold);
  font-weight: 700;
  margin: 0 auto 14px;
  border: 2px solid var(--pebble);
}

.abrf-team-card__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.abrf-team-card__title {
  font-size: 12px;
  color: var(--slate-mid);
  margin-bottom: 10px;
}

.abrf-team-card__bio {
  font-size: 13px;
  color: var(--slate-mid);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   Blog
   -------------------------------------------------------------------------- */
.abrf-blog-hero {
  background-color: var(--navy);
  padding: calc(72px + 56px) 0 56px;
  text-align: center;
}

.abrf-blog-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.abrf-blog-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
}

.abrf-blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background-color: var(--white);
  border: 1px solid var(--pebble);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 56px;
}

.abrf-blog-featured__image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.abrf-blog-featured__content {
  padding: 40px;
}

.abrf-blog-featured__cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border-left: 2px solid var(--gold);
  padding-left: 8px;
  margin-bottom: 12px;
}

.abrf-blog-featured__title {
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--charcoal);
  margin-bottom: 12px;
  font-family: var(--font-head);
  line-height: 1.25;
}

.abrf-blog-featured__summary {
  font-size: 14.5px;
  color: var(--slate-mid);
  line-height: 1.65;
  margin-bottom: 20px;
}

.abrf-blog-featured__meta {
  font-size: 12px;
  color: var(--slate-light);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.abrf-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.abrf-blog-card {
  background-color: var(--white);
  border: 1px solid var(--pebble);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.abrf-blog-card:hover {
  box-shadow: 0 6px 24px rgba(15,32,68,0.12);
  transform: translateY(-2px);
  text-decoration: none;
}

.abrf-blog-card__thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.abrf-blog-card__body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.abrf-blog-card__cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border-left: 2px solid var(--gold);
  padding-left: 7px;
  margin-bottom: 10px;
}

.abrf-blog-card__title {
  font-family: var(--font-head);
  font-size: 17px;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 10px;
  flex: 1;
}

.abrf-blog-card__summary {
  font-size: 13px;
  color: var(--slate-mid);
  line-height: 1.55;
  margin-bottom: 12px;
}

.abrf-blog-card__meta {
  font-size: 11.5px;
  color: var(--slate-light);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  border-top: 1px solid var(--pebble);
  padding-top: 12px;
  margin-top: auto;
}

.abrf-blog-newsletter {
  background-color: var(--navy);
  border-radius: var(--radius-md);
  padding: 48px;
  text-align: center;
}

.abrf-blog-newsletter h2 {
  color: var(--white);
  font-size: clamp(22px, 2.5vw, 30px);
  margin-bottom: 10px;
}

.abrf-blog-newsletter p {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  margin-bottom: 24px;
}

.abrf-newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.abrf-newsletter-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  font-size: 14px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  background-color: rgba(255,255,255,0.08);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.abrf-newsletter-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.4);
}

.abrf-newsletter-form input[type="email"]:focus {
  border-color: var(--gold);
}

/* --------------------------------------------------------------------------
   Article (Blog Post)
   -------------------------------------------------------------------------- */
.abrf-article-header {
  background-color: var(--navy);
  padding: calc(72px + 56px) 0 56px;
}

.abrf-article-header__cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border-left: 2px solid var(--gold);
  padding-left: 8px;
  margin-bottom: 16px;
}

.abrf-article-header h1 {
  color: var(--white);
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(28px, 3.5vw, 44px);
}

.abrf-article-header__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
}

.abrf-article-cover-wrap {
  width: 100%;
  height: 340px;
  overflow: hidden;
  background: var(--surface);
}

.abrf-article-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin-bottom: 0;
}

.abrf-article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px clamp(20px, 5vw, 40px);
}

.abrf-article-body h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--charcoal);
  margin-top: 40px;
  margin-bottom: 14px;
}

.abrf-article-body h3 {
  font-size: 18px;
  color: var(--charcoal);
  margin-top: 28px;
  margin-bottom: 10px;
}

.abrf-article-body p {
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: 20px;
}

.abrf-article-body ul,
.abrf-article-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.abrf-article-body ul { list-style: disc; }
.abrf-article-body ol { list-style: decimal; }

.abrf-article-body li {
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 8px;
}

.abrf-article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  margin: 28px 0;
  background-color: var(--surface);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--charcoal);
}

.abrf-article-cta {
  background-color: var(--navy);
  border-radius: var(--radius-md);
  padding: 36px;
  margin: 48px 0 0;
  text-align: center;
}

.abrf-article-cta h3 {
  color: var(--white);
  margin-bottom: 10px;
}

.abrf-article-cta p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
  font-size: 14px;
}

/* --------------------------------------------------------------------------
   Contact Page
   -------------------------------------------------------------------------- */
.abrf-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}

.abrf-contact-founder {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.abrf-contact-founder__portrait {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 3px solid var(--gold);
}

.abrf-contact-founder__name {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.abrf-contact-founder__title {
  font-size: 13px;
  color: var(--slate-mid);
  margin-bottom: 14px;
}

.abrf-contact-founder__copy {
  font-size: 15.5px;
  color: var(--slate-mid);
  line-height: 1.7;
  max-width: 420px;
}

.abrf-contact-details {
  margin-top: 24px;
  border-top: 1px solid var(--pebble);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.abrf-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--charcoal);
}

.abrf-contact-detail i {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
}

/* Contact Form */
.abrf-form {
  background-color: var(--white);
  border: 1px solid var(--pebble);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.abrf-form-group {
  margin-bottom: 20px;
}

.abrf-form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.abrf-form-label span {
  color: var(--slate-mid);
  font-weight: 400;
}

.abrf-form-input,
.abrf-form-select,
.abrf-form-textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--charcoal);
  background-color: var(--off-white);
  border: 1.5px solid var(--pebble);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.abrf-form-input:focus,
.abrf-form-select:focus,
.abrf-form-textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15,32,68,0.08);
  background-color: var(--white);
}

.abrf-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.abrf-form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6478' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* --------------------------------------------------------------------------
   FAQ Accordion
   -------------------------------------------------------------------------- */
.abrf-faq {
  max-width: 720px;
}

.abrf-faq-item {
  border-bottom: 1px solid var(--pebble);
}

.abrf-faq-item:first-child {
  border-top: 1px solid var(--pebble);
}

.abrf-faq-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}

.abrf-faq-btn:hover {
  color: var(--navy);
}

.abrf-faq-btn[aria-expanded="true"] {
  color: var(--navy);
}

.abrf-faq-btn__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--pebble);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--slate-mid);
  transition: background-color 0.2s, border-color 0.2s, transform 0.2s;
}

.abrf-faq-btn[aria-expanded="true"] .abrf-faq-btn__icon {
  background-color: var(--navy);
  border-color: var(--navy);
  color: var(--gold);
  transform: rotate(45deg);
}

.abrf-faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.abrf-faq-answer.is-open {
  max-height: 400px;
}

.abrf-faq-answer__inner {
  padding: 0 0 20px;
  font-size: 14.5px;
  color: var(--slate-mid);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   404
   -------------------------------------------------------------------------- */
.abrf-404 {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(72px + 80px) 20px 80px;
}

.abrf-404__num {
  font-family: var(--font-head);
  font-size: clamp(80px, 15vw, 140px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  opacity: 0.12;
  margin-bottom: -20px;
}

.abrf-404__title {
  font-size: clamp(24px, 3vw, 36px);
  color: var(--charcoal);
  margin-bottom: 12px;
}

.abrf-404__copy {
  font-size: 16px;
  color: var(--slate-mid);
  max-width: 400px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Legal Pages
   -------------------------------------------------------------------------- */
.abrf-legal {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 48px clamp(20px, 5vw, 40px) 80px;
}

.abrf-legal h2 {
  font-size: 20px;
  color: var(--navy);
  border-left: 3px solid var(--gold);
  padding-left: 14px;
  margin: 40px 0 12px;
}

.abrf-legal h3 {
  font-size: 16px;
  color: var(--charcoal);
  margin: 24px 0 8px;
}

.abrf-legal p,
.abrf-legal li {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 12px;
}

.abrf-legal ul {
  padding-left: 20px;
  list-style: disc;
}

.abrf-legal a {
  color: var(--navy);
  text-decoration: underline;
}

.abrf-legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 13.5px;
}

.abrf-legal th {
  background-color: var(--navy);
  color: var(--white);
  text-align: left;
  padding: 10px 14px;
  font-weight: 600;
}

.abrf-legal td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--pebble);
  vertical-align: top;
}

.abrf-legal tr:nth-child(even) td {
  background-color: var(--surface);
}

.abrf-legal .abrf-highlight-box {
  background-color: var(--surface);
  border: 1px solid var(--pebble);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin: 20px 0;
}

/* --------------------------------------------------------------------------
   Cookie Banner
   -------------------------------------------------------------------------- */
.abrf-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background-color: var(--navy);
  border-top: 2px solid var(--gold);
  padding: 20px clamp(20px, 5vw, 48px);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.abrf-cookie-banner.is-hidden {
  display: none;
}

.abrf-cookie-banner__text {
  flex: 1;
  min-width: 200px;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}

.abrf-cookie-banner__text a {
  color: var(--gold);
  text-decoration: underline;
}

.abrf-cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.abrf-cookie-banner__accept {
  font-size: 13px;
  font-weight: 600;
  padding: 9px 22px;
  background-color: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color 0.2s;
}

.abrf-cookie-banner__accept:hover {
  background-color: var(--gold-light);
}

.abrf-cookie-banner__essential {
  font-size: 13px;
  font-weight: 500;
  padding: 9px 18px;
  background-color: transparent;
  color: rgba(255,255,255,0.62);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.abrf-cookie-banner__essential:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

/* --------------------------------------------------------------------------
   Fade-in Animations
   -------------------------------------------------------------------------- */
.abrf-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.abrf-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   CTA Band
   -------------------------------------------------------------------------- */
.abrf-cta-band {
  background-color: var(--navy);
  padding: 72px 0;
  text-align: center;
}

.abrf-cta-band h2 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: clamp(26px, 3.5vw, 40px);
}

.abrf-cta-band p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .abrf-workflow__steps::before { display: none; }
  .abrf-trust-band__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .abrf-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .abrf-nav__links,
  .abrf-nav__utility {
    display: none;
  }
  .abrf-nav__hamburger {
    display: flex;
  }

  .abrf-hero__inner {
    grid-template-columns: 1fr;
  }
  .abrf-hero__image {
    display: none;
  }
  .abrf-hero {
    text-align: center;
  }
  .abrf-hero__gold-rule {
    margin: 0 auto 24px;
  }
  .abrf-hero__ctas {
    justify-content: center;
  }
  .abrf-hero__proof {
    justify-content: center;
  }

  .abrf-workflow__steps {
    grid-template-columns: 1fr;
  }

  .abrf-feature-block__inner {
    grid-template-columns: 1fr;
  }
  .abrf-feature-block__inner--reverse {
    direction: ltr;
  }

  .abrf-trust-band__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .abrf-testimonials__grid {
    grid-template-columns: 1fr;
  }

  .abrf-founder-cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .abrf-founder-cta__portrait {
    margin: 0 auto;
  }

  .abrf-footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .abrf-pricing-grid {
    grid-template-columns: 1fr;
  }

  .abrf-security-grid {
    grid-template-columns: 1fr;
  }

  .abrf-blog-featured {
    grid-template-columns: 1fr;
  }
  .abrf-blog-featured__image img {
    height: 220px;
  }

  .abrf-blog-grid {
    grid-template-columns: 1fr;
  }

  .abrf-quote-wall {
    grid-template-columns: 1fr;
  }

  .abrf-founder-section {
    grid-template-columns: 1fr;
  }
  .abrf-founder-section__portrait img {
    max-width: 260px;
    margin: 0 auto;
  }

  .abrf-contact-grid {
    grid-template-columns: 1fr;
  }

  .abrf-integration-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .abrf-newsletter-form {
    flex-direction: column;
  }
  .abrf-newsletter-form input[type="email"] {
    width: 100%;
  }
  .abrf-cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .abrf-cookie-banner__actions {
    width: 100%;
  }
  .abrf-cookie-banner__accept,
  .abrf-cookie-banner__essential {
    flex: 1;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   Print
   -------------------------------------------------------------------------- */
@media print {
  .abrf-nav,
  .abrf-cookie-banner,
  .abrf-cta-band {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Login Pages
   -------------------------------------------------------------------------- */
.abrf-login-page {
  background-color: var(--off-white);
  min-height: 100vh;
}

.abrf-login-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.abrf-login-layout--wide {
  grid-template-columns: 1.1fr 0.9fr;
}

.abrf-login-panel {
  display: flex;
  flex-direction: column;
  padding: clamp(32px, 5vw, 56px) clamp(24px, 6vw, 72px);
  background-color: var(--off-white);
}

.abrf-login-panel--wide {
  padding-right: clamp(24px, 5vw, 64px);
}

.abrf-login-logo {
  display: block;
  margin-bottom: clamp(32px, 5vw, 52px);
  flex-shrink: 0;
}

.abrf-login-logo img {
  height: 36px;
  width: auto;
}

.abrf-login-box {
  max-width: 420px;
  width: 100%;
}

.abrf-login-panel--wide .abrf-login-box {
  max-width: 520px;
}

.abrf-login-gold-rule {
  display: block;
  width: 36px;
  height: 2px;
  background-color: var(--gold);
  margin-bottom: 20px;
}

.abrf-login-gold-rule--centered {
  margin-left: auto;
  margin-right: auto;
}

.abrf-login-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 8px;
}

.abrf-login-sub {
  font-size: 15px;
  color: var(--slate-mid);
  line-height: 1.6;
  margin-bottom: 32px;
}

.abrf-login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.abrf-login-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.abrf-login-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.abrf-login-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.abrf-login-label-optional {
  font-weight: 400;
  color: var(--slate-mid);
  font-size: 12px;
}

.abrf-login-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.abrf-login-forgot {
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}

.abrf-login-forgot:hover {
  color: var(--gold);
  text-decoration: none;
}

.abrf-login-input {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--charcoal);
  background-color: var(--white);
  border: 1.5px solid var(--pebble);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.abrf-login-input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15,32,68,0.08);
}

.abrf-login-input::placeholder {
  color: var(--slate-light);
}

.abrf-login-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6478' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.abrf-login-input-wrap {
  position: relative;
}

.abrf-login-input-wrap .abrf-login-input {
  padding-right: 44px;
}

.abrf-login-toggle-pw {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--slate-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: color 0.2s;
}

.abrf-login-toggle-pw:hover {
  color: var(--navy);
}

.abrf-login-form-group--check {
  margin-top: 4px;
}

.abrf-login-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--charcoal);
  line-height: 1.5;
}

.abrf-login-checkbox input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  accent-color: var(--navy);
  cursor: pointer;
}

.abrf-login-checkbox a {
  color: var(--navy);
  text-decoration: underline;
}

.abrf-login-checkbox a:hover {
  color: var(--gold);
}

.abrf-login-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  background-color: var(--gold);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color 0.2s;
  margin-top: 4px;
}

.abrf-login-btn-primary:hover {
  background-color: var(--gold-light);
}

.abrf-login-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--slate-light);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 20px 0;
}

.abrf-login-divider::before,
.abrf-login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: var(--pebble);
}

.abrf-login-oauth {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 11px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  background-color: var(--white);
  border: 1.5px solid var(--pebble);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 24px;
}

.abrf-login-oauth:hover {
  border-color: var(--navy);
  box-shadow: 0 2px 8px rgba(15,32,68,0.06);
  text-decoration: none;
}

.abrf-login-footer-note {
  font-size: 13px;
  color: var(--slate-mid);
  text-align: center;
  margin-bottom: 0;
}

.abrf-login-footer-note a {
  color: var(--navy);
  font-weight: 500;
  text-decoration: none;
}

.abrf-login-footer-note a:hover {
  text-decoration: underline;
}

.abrf-login-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-weight: 500;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}

.abrf-login-back-link:hover {
  color: var(--gold);
  text-decoration: none;
}

.abrf-login-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background-color: var(--surface);
  border: 1.5px solid var(--pebble);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 20px;
}

.abrf-login-reset-sent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background-color: rgba(74,124,89,0.08);
  border: 1px solid rgba(74,124,89,0.25);
  border-radius: var(--radius-md);
  color: var(--sage);
  margin-bottom: 24px;
}

.abrf-login-reset-sent.is-hidden {
  display: none;
}

.abrf-login-reset-sent svg {
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--sage);
}

.abrf-login-reset-sent p {
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.55;
  margin-bottom: 0;
}

/* Aside */
.abrf-login-aside {
  background-color: var(--navy);
  display: flex;
  flex-direction: column;
  padding: clamp(40px, 6vw, 72px) clamp(36px, 5vw, 64px);
  position: relative;
  overflow: hidden;
}

.abrf-login-aside::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 30px,
    rgba(193,154,91,0.03) 30px,
    rgba(193,154,91,0.03) 31px
  );
  pointer-events: none;
}

.abrf-login-aside-inner {
  position: relative;
  z-index: 1;
  max-width: 440px;
  margin: auto 0;
}

.abrf-login-aside-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border-left: 2px solid var(--gold);
  padding-left: 8px;
  margin-bottom: 20px;
}

.abrf-login-aside-headline {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.abrf-login-aside-body {
  font-size: 15px;
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
  margin-bottom: 28px;
}

.abrf-login-aside-quote {
  border-left: 2px solid var(--gold);
  padding: 16px 20px;
  margin: 28px 0;
  background-color: rgba(248,246,241,0.05);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.abrf-login-aside-quote p {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  margin-bottom: 10px;
}

.abrf-login-aside-attr {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.03em;
  font-style: normal;
}

.abrf-login-aside-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.abrf-login-aside-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.abrf-login-check {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Signup aside steps */
.abrf-login-aside-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.abrf-login-aside-steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.abrf-login-aside-steps strong {
  display: block;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 3px;
  font-size: 14px;
}

.abrf-login-aside-steps p {
  margin-bottom: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.abrf-login-step-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: var(--radius-full);
  background-color: rgba(193,154,91,0.15);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.abrf-login-aside-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 14px 16px;
  background-color: rgba(193,154,91,0.08);
  border: 1px solid rgba(193,154,91,0.2);
  border-radius: var(--radius-md);
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.abrf-login-aside-note svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.abrf-login-aside-security-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  margin-top: 20px;
  transition: color 0.2s;
}

.abrf-login-aside-security-link:hover {
  color: var(--gold-light);
  text-decoration: none;
}

/* Login responsive */
@media (max-width: 900px) {
  .abrf-login-layout,
  .abrf-login-layout--wide {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .abrf-login-aside {
    padding: 48px clamp(24px, 6vw, 72px);
  }

  .abrf-login-aside-inner {
    max-width: 100%;
    margin: 0;
  }
}

@media (max-width: 540px) {
  .abrf-login-panel {
    padding: 28px 20px;
  }

  .abrf-login-box,
  .abrf-login-panel--wide .abrf-login-box {
    max-width: 100%;
  }

  .abrf-login-form-row {
    grid-template-columns: 1fr;
  }

  .abrf-login-aside {
    padding: 36px 20px;
  }
}
