/* Omni Health homepage concept
   - Fully static, dependency-free CSS
   - Class names are prefixed with oh- to reduce clashes inside a custom platform
*/

:root {
  --oh-navy: #081a3d;
  --oh-navy-2: #102a43;
  --oh-slate: #334e68;
  --oh-muted: #6b7f99;
  --oh-soft: #f6fbfb;
  --oh-soft-2: #edfafa;
  --oh-card: #ffffff;
  --oh-line: #dceced;
  --oh-teal: #078b9a;
  --oh-teal-dark: #006b78;
  --oh-aqua: #4fd1c5;
  --oh-mint: #ccfbf1;
  --oh-blue: #2563eb;
  --oh-purple: #8b5cf6;
  --oh-orange: #f97316;
  --oh-shadow: 0 24px 70px rgba(8, 26, 61, 0.11);
  --oh-shadow-soft: 0 14px 34px rgba(8, 26, 61, 0.08);
  --oh-radius: 28px;
  --oh-radius-sm: 18px;
  --oh-container: 1180px;
  --oh-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--oh-font);
  color: var(--oh-navy);
  background: #fff;
  line-height: 1.55;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.oh-container {
  width: min(var(--oh-container), calc(100% - 42px));
  margin-inline: auto;
}

.oh-sr-only,
.oh-skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.oh-skip-link:focus {
  position: fixed;
  z-index: 9999;
  top: 14px;
  left: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--oh-navy);
  color: #fff;
}

/* Header */

.oh-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220, 236, 237, 0.8);
  box-shadow: 0 10px 28px rgba(8, 26, 61, 0.05);
}

.oh-header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.oh-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.45rem;
  font-weight: 850;
  letter-spacing: -0.04em;
  color: var(--oh-navy);
  flex-shrink: 0;
}

.oh-primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  font-size: 0.9rem;
  font-weight: 760;
  color: var(--oh-slate);
  flex: 1;
}

.oh-primary-nav a {
  position: relative;
  padding: 27px 0;
}

.oh-primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 19px;
  height: 2px;
  background: linear-gradient(90deg, var(--oh-teal), var(--oh-aqua));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.oh-primary-nav a:hover::after,
.oh-primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.oh-header-actions,
.oh-hero-actions,
.oh-cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.oh-nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.space-y-1 {
      list-style-type: none;
}

.oh-nav-toggle span:not(.oh-sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--oh-navy);
  margin: 5px auto;
  border-radius: 999px;
}

/* Buttons */

.oh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0.78rem 1.08rem;
  border-radius: 13px;
  font-weight: 820;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.oh-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.oh-btn:hover,
.oh-btn:focus-visible {
  transform: translateY(-1px);
}

.oh-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--oh-teal-dark), var(--oh-teal));
  box-shadow: 0 16px 34px rgba(7, 139, 154, 0.22);
}

.oh-btn-primary:hover,
.oh-btn-primary:focus-visible {
  box-shadow: 0 18px 42px rgba(7, 139, 154, 0.28);
}

.oh-btn-ghost,
.oh-btn-secondary {
  color: var(--oh-navy);
  background: #fff;
  border-color: var(--oh-line);
  box-shadow: 0 8px 20px rgba(8, 26, 61, 0.06);
}

.oh-btn-outline {
  color: var(--oh-teal-dark);
  background: #fff;
  border-color: rgba(7, 139, 154, 0.35);
}

.oh-btn-light {
  background: #fff;
  color: var(--oh-teal-dark);
}

.oh-btn-transparent {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
}

.oh-btn-large {
  min-height: 58px;
  padding: 1rem 1.4rem;
  border-radius: 15px;
}

.oh-full-width {
  width: 100%;
}

/* Hero */

.oh-hero {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 78% 4%, rgba(79, 209, 197, 0.22), transparent 32%),
    radial-gradient(circle at 4% 14%, rgba(204, 251, 241, 0.72), transparent 27%),
    linear-gradient(180deg, #f7fcfc 0%, #fff 88%);
}

.oh-hero-bg {
  position: absolute;
  inset: auto -20% -18% -20%;
  height: 48%;
  opacity: 0.68;
  background:
    repeating-radial-gradient(ellipse at center, rgba(7, 139, 154, 0.11) 0 1px, transparent 1px 16px),
    linear-gradient(115deg, transparent 0 35%, rgba(79, 209, 197, 0.18), transparent 65%);
  transform: rotate(-4deg);
  pointer-events: none;
}

.oh-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.2fr);
  align-items: center;
  gap: 56px;
  padding: 70px 0 62px;
}

.oh-eyebrow,
.oh-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--oh-teal-dark);
  font-weight: 860;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.oh-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--oh-aqua);
  box-shadow: 0 0 0 6px rgba(79, 209, 197, 0.16);
}

.oh-hero h1 {
  max-width: 650px;
  margin: 18px 0 20px;
  font-size: clamp(3.25rem, 6vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
  color: var(--oh-navy);
}

.oh-hero-lede {
  max-width: 550px;
  margin: 0 0 30px;
  color: var(--oh-slate);
  font-size: 1.14rem;
}

.oh-rotator {
  margin: 22px 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(220,236,237,0.9);
  border-radius: 999px;
  color: var(--oh-muted);
  font-size: 0.86rem;
  box-shadow: 0 12px 32px rgba(8,26,61,0.06);
}

.oh-rotator strong {
  color: var(--oh-teal-dark);
}

.oh-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.oh-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(220, 236, 237, 0.88);
  color: var(--oh-slate);
  font-weight: 760;
  font-size: 0.83rem;
  box-shadow: 0 12px 28px rgba(8, 26, 61, 0.07);
}

.oh-pill i {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--oh-mint), var(--oh-aqua));
}

.oh-hero-visual {
  position: relative;
  min-height: 520px;
}

.oh-dashboard-card,
.oh-timeline-panel,
.oh-panel,
.oh-benefit-card,
.oh-article-card,
.oh-professional-card,
.oh-security-grid {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(220, 236, 237, 0.92);
  box-shadow: var(--oh-shadow-soft);
  backdrop-filter: blur(16px);
}

.oh-river-card {
  width: min(430px, 72%);
  min-height: 475px;
  padding: 24px;
  border-radius: 28px;
  margin-left: 24px;
  position: relative;
  z-index: 2;
}

.oh-permissions-card {
  position: absolute;
  right: 0;
  top: 96px;
  width: 270px;
  padding: 22px;
  border-radius: 24px;
  z-index: 3;
}

.oh-card-topline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.oh-card-topline h2 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: -0.035em;
  flex: 1;
}

.oh-card-topline-compact h2 {
  font-size: 1rem;
}

.oh-mini-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-content: center;
  gap: 4px;
  border: 0;
  border-radius: 13px;
  color: var(--oh-slate);
  background: var(--oh-soft);
}

.oh-mini-icon span {
  display: block;
  width: 13px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.oh-add-btn {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--oh-teal-dark), var(--oh-teal));
  min-height: 35px;
  padding: 0 13px;
  border-radius: 10px;
  font-weight: 850;
}

.oh-lock-badge {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--oh-soft-2);
}

.oh-mini-timeline {
  display: grid;
  gap: 12px;
}

.oh-event {
  display: grid;
  grid-template-columns: 74px 40px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 11px;
  border-radius: 17px;
  background: rgba(246, 251, 251, 0.72);
  border: 1px solid rgba(220, 236, 237, 0.7);
}

.oh-event time {
  color: var(--oh-muted);
  font-size: 0.72rem;
  line-height: 1.2;
}

.oh-event time strong {
  color: var(--oh-slate);
}

.oh-event h3,
.oh-table-row h3 {
  margin: 0;
  font-size: 0.88rem;
  letter-spacing: -0.02em;
}

.oh-event p,
.oh-table-row p {
  margin: 2px 0 0;
  font-size: 0.76rem;
  color: var(--oh-muted);
}

.oh-event > span,
.oh-table-row em {
  justify-self: end;
  padding: 4px 7px;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 820;
  font-style: normal;
}

.oh-event-icon,
.oh-row-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-weight: 900;
}

.oh-event-results .oh-event-icon,
.oh-row-icon.results,
.oh-event-results > span,
.oh-table-row em.results {
  color: #047857;
  background: #dff9eb;
}

.oh-event-note .oh-event-icon,
.oh-row-icon.note,
.oh-event-note > span,
.oh-table-row em.note {
  color: #2563eb;
  background: #e3ecff;
}

.oh-event-medication .oh-event-icon,
.oh-row-icon.medication,
.oh-event-medication > span,
.oh-table-row em.medication {
  color: #7c3aed;
  background: #efe7ff;
}

.oh-event-shared .oh-event-icon,
.oh-row-icon.shared,
.oh-event-shared > span,
.oh-table-row em.shared {
  color: #0f766e;
  background: #dffaf5;
}

.oh-event-document .oh-event-icon,
.oh-row-icon.document,
.oh-event-document > span,
.oh-table-row em.document {
  color: #ea580c;
  background: #fff0df;
}

.oh-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: 16px;
  color: var(--oh-teal-dark);
  font-weight: 850;
  font-size: 0.87rem;
}

.oh-access-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 13px;
}

.oh-access-list li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 9px;
  align-items: center;
  gap: 10px;
}

.oh-avatar {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
  color: #fff;
}

.oh-avatar-doctor { background: linear-gradient(135deg, #60a5fa, #2563eb); }
.oh-avatar-pharmacy { background: linear-gradient(135deg, #5eead4, #0f766e); }
.oh-avatar-family { background: linear-gradient(135deg, #fdba74, #f97316); }

.oh-access-list strong {
  display: block;
  font-size: 0.82rem;
}

.oh-access-list small {
  display: block;
  color: var(--oh-muted);
  font-size: 0.73rem;
}

.oh-access-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.oh-access-dot.ok { background: #10b981; }
.oh-access-dot.limited { background: #f97316; }

/* Sections */

.oh-section {
  padding: 78px 0;
}

.oh-benefits {
  position: relative;
  z-index: 5;
  margin-top: -8px;
  padding: 0 0 42px;
  background: #fff;
}

.oh-card-grid {
  display: grid;
  gap: 24px;
}

.oh-card-grid-three {
  grid-template-columns: repeat(3, 1fr);
}

.oh-benefit-card {
  min-height: 170px;
  border-radius: 22px;
  padding: 28px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 18px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.oh-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--oh-shadow);
}

.oh-feature-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  font-size: 1.55rem;
}

.oh-feature-icon.teal { background: #e0fbf5; }
.oh-feature-icon.blue { background: #e6f0ff; }
.oh-feature-icon.purple { background: #f0e9ff; }

.oh-benefit-card h2 {
  margin: 0 0 5px;
  font-size: 1.23rem;
  letter-spacing: -0.04em;
}

.oh-benefit-card p {
  margin: 0;
  color: var(--oh-slate);
  font-size: 0.95rem;
}

.oh-benefit-card a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--oh-teal-dark);
  background: var(--oh-soft-2);
  font-weight: 900;
}

.oh-two-column {
  display: grid;
  grid-template-columns: 0.78fr 1.35fr;
  align-items: center;
  gap: 54px;
}

.oh-section-copy h2,
.oh-panel h2,
.oh-professional-card h2,
.oh-security-grid h2,
.oh-final-cta h2 {
  margin: 10px 0 13px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.oh-section-copy p,
.oh-panel p,
.oh-professional-card p,
.oh-security-grid p {
  margin: 0;
  color: var(--oh-slate);
  font-size: 1.04rem;
}

.oh-feature-list {
  display: grid;
  gap: 24px;
  margin-top: 34px;
}

.oh-feature-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}

.oh-feature-list span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--oh-soft-2);
}

.oh-feature-list h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.oh-feature-list p {
  font-size: 0.94rem;
}

.oh-timeline-panel {
  border-radius: 28px;
  padding: 24px;
  overflow: hidden;
}

.oh-tabs {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.oh-tabs button {
  border: 1px solid var(--oh-line);
  background: #fff;
  color: var(--oh-muted);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.78rem;
  font-weight: 820;
  white-space: nowrap;
}

.oh-tabs .active {
  background: var(--oh-teal);
  color: #fff;
  border-color: var(--oh-teal);
}

.oh-tabs .oh-filter {
  margin-left: auto;
}

.oh-table-timeline {
  border: 1px solid var(--oh-line);
  border-radius: 20px;
  overflow: hidden;
}

.oh-table-row {
  display: grid;
  grid-template-columns: 78px 42px minmax(0, 1fr) 115px 88px;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: rgba(255,255,255,0.84);
  border-bottom: 1px solid var(--oh-line);
}

.oh-table-row:last-child {
  border-bottom: 0;
}

.oh-table-row time,
.oh-table-row strong {
  color: var(--oh-muted);
  font-size: 0.77rem;
  line-height: 1.25;
}

.oh-row-icon {
  width: 42px;
  height: 42px;
}

.oh-ecosystem-section {
  padding-top: 24px;
}

.oh-split-panels {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 24px;
}

.oh-panel {
  border-radius: 28px;
  padding: clamp(26px, 4vw, 42px);
}

.oh-care-panel {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 26px;
  align-items: center;
}

.oh-care-orbit {
  min-height: 330px;
  position: relative;
  display: grid;
  place-items: center;
}

.oh-orbit-line {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 999px;
  border: 1px dashed rgba(7, 139, 154, 0.35);
}

.oh-orbit-line::before,
.oh-orbit-line::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 270px;
  height: 1px;
  background: rgba(7, 139, 154, 0.18);
  transform: translate(-50%, -50%) rotate(25deg);
}

.oh-orbit-line::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.oh-node {
  position: absolute;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 999px;
  background: #fff;
  color: var(--oh-navy);
  border: 1px solid var(--oh-line);
  box-shadow: 0 12px 32px rgba(8, 26, 61, 0.09);
  font-size: 0.78rem;
  font-weight: 850;
}

.oh-node.center {
  width: 92px;
  height: 92px;
  background: linear-gradient(135deg, var(--oh-teal-dark), var(--oh-teal));
  color: #fff;
  z-index: 2;
}

.oh-node.gp { top: 5px; left: 50%; transform: translateX(-50%); }
.oh-node.clinic { top: 63px; right: 32px; }
.oh-node.hospital { bottom: 58px; right: 18px; }
.oh-node.pharmacy { bottom: 0; left: 50%; transform: translateX(-50%); }
.oh-node.practitioner { bottom: 58px; left: 18px; }
.oh-node.family { top: 63px; left: 32px; }
.oh-node.friends { top: 28%; left: 0; }

.oh-control-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.oh-control-grid article {
  min-height: 154px;
  padding: 18px;
  border: 1px solid var(--oh-line);
  border-radius: 18px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 10px 24px rgba(8, 26, 61, 0.06);
}

.oh-control-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--oh-teal-dark);
  font-size: 1.55rem;
}

.oh-control-grid h3 {
  margin: 0 0 8px;
  font-size: 0.9rem;
}

.oh-control-grid p {
  font-size: 0.78rem;
}

.oh-professionals-section {
  padding-top: 36px;
}

.oh-professional-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 10%, rgba(79, 209, 197, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(246,251,251,0.96));
}

.oh-professional-points {
  display: grid;
  gap: 14px;
}

.oh-professional-points article {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--oh-line);
}

.oh-professional-points strong {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: var(--oh-soft-2);
  color: var(--oh-teal-dark);
}

.oh-professional-points span {
  font-weight: 820;
  color: var(--oh-navy);
}

.oh-library-section {
  background: linear-gradient(180deg, #fff 0%, var(--oh-soft) 100%);
}

.oh-library-grid {
  display: grid;
  grid-template-columns: 0.62fr 1.6fr;
  gap: 34px;
  align-items: stretch;
}

.oh-library-grid .oh-section-copy {
  align-self: center;
}

.oh-library-grid .oh-btn {
  margin-top: 28px;
}

.oh-article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.oh-article-card {
  border-radius: 22px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.oh-article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--oh-shadow);
}

.oh-article-card img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  background: var(--oh-soft-2);
}

.oh-article-body {
  padding: 18px;
}

.oh-article-body > span {
  display: inline-flex;
  padding: 5px 9px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: #dffaf5;
  color: var(--oh-teal-dark);
  font-size: 0.75rem;
  font-weight: 850;
}

.oh-article-body h3 {
  margin: 0 0 8px;
  font-size: 1.14rem;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.oh-article-body p {
  margin: 0;
  color: var(--oh-slate);
  font-size: 0.91rem;
}

.oh-article-body footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  color: var(--oh-muted);
  font-size: 0.82rem;
}

.oh-article-body footer a {
  color: var(--oh-teal-dark);
  font-weight: 850;
}

.oh-security-section {
  padding-top: 52px;
  background: var(--oh-soft);
}

.oh-security-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 38px;
  align-items: center;
  border-radius: 30px;
  padding: clamp(28px, 5vw, 46px);
}

.oh-security-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.oh-security-features article {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px;
  border-radius: 18px;
  background: var(--oh-soft);
  border: 1px solid var(--oh-line);
}

.oh-security-features span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: #fff;
  background: var(--oh-teal);
  font-weight: 900;
  flex-shrink: 0;
}

.oh-final-cta {
  padding: 56px 0;
  background: var(--oh-soft);
}

.oh-cta-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 150px;
  padding: clamp(28px, 4vw, 42px) clamp(26px, 5vw, 62px);
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 15%, rgba(255,255,255,0.32), transparent 28%),
    linear-gradient(135deg, #057889 0%, #0da4b1 52%, #91e3dc 100%);
  box-shadow: 0 26px 64px rgba(7, 139, 154, 0.26);
}

.oh-cta-card::after {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: -34%;
  height: 78%;
  opacity: 0.36;
  background: repeating-radial-gradient(ellipse at center, rgba(255,255,255,0.8) 0 1px, transparent 1px 18px);
  transform: rotate(-4deg);
}

.oh-cta-card > * {
  position: relative;
  z-index: 1;
}

.oh-final-cta h2 {
  color: #fff;
  margin-top: 0;
  font-size: clamp(1.8rem, 4vw, 2.55rem);
}

.oh-final-cta p {
  margin: 0;
  color: rgba(255,255,255,0.92);
}

/* Footer */

.oh-site-footer {
  background: #fff;
  border-top: 1px solid var(--oh-line);
}

.oh-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 0.72fr) 1.2fr;
  gap: 28px;
  padding: 50px 0 36px;
}

.oh-site-footer h2 {
  margin: 0 0 13px;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
}

.oh-site-footer nav a {
  display: block;
  margin: 8px 0;
  color: var(--oh-slate);
  font-size: 0.88rem;
}

.oh-footer-brand p,
.oh-newsletter p {
  color: var(--oh-slate);
  margin: 14px 0;
  font-size: 0.95rem;
}

.oh-socials {
  display: flex;
  gap: 8px;
}

.oh-socials a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--oh-soft);
  color: var(--oh-slate);
  font-weight: 850;
}

.oh-newsletter {
  border: 1px solid var(--oh-line);
  border-radius: 20px;
  padding: 22px;
}

.oh-newsletter div {
  display: flex;
  gap: 8px;
}

.oh-newsletter input {
  min-width: 0;
  width: 100%;
  border: 1px solid var(--oh-line);
  border-radius: 12px;
  padding: 0 12px;
  min-height: 42px;
}

.oh-newsletter button {
  border: 0;
  border-radius: 12px;
  padding: 0 14px;
  min-height: 42px;
  background: var(--oh-teal);
  color: #fff;
  font-weight: 850;
}

.oh-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 30px;
  border-top: 1px solid var(--oh-line);
  color: var(--oh-muted);
  font-size: 0.86rem;
}

.oh-footer-bottom p {
  margin: 0;
}

/* Responsive */

@media (max-width: 1120px) {
  .oh-header-actions {
    display: none;
  }

  .oh-hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .oh-hero-visual {
    min-height: 520px;
  }

  .oh-river-card {
    margin-left: 0;
    width: min(560px, 76%);
  }

  .oh-card-grid-three,
  .oh-split-panels,
  .oh-library-grid,
  .oh-security-grid,
  .oh-professional-card {
    grid-template-columns: 1fr;
  }

  .oh-care-panel {
    grid-template-columns: 1fr;
  }

  .oh-footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .oh-container {
    width: min(100% - 28px, var(--oh-container));
  }

  .oh-header-inner {
    min-height: 66px;
  }

  .oh-nav-toggle {
    display: block;
  }

  .oh-primary-nav {
    position: fixed;
    inset: 66px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--oh-line);
    border-radius: 20px;
    background: rgba(255,255,255,0.97);
    box-shadow: var(--oh-shadow);
  }

  .oh-primary-nav.is-open {
    display: flex;
  }

  .oh-primary-nav a {
    padding: 14px;
    border-radius: 12px;
  }

  .oh-primary-nav a:hover {
    background: var(--oh-soft);
  }

  .oh-primary-nav a::after {
    display: none;
  }

  .oh-hero-grid {
    padding-top: 42px;
  }

  .oh-hero h1 {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
  }

  .oh-hero-actions,
  .oh-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .oh-btn-large,
  .oh-cta-actions .oh-btn {
    width: 100%;
  }

  .oh-hero-visual {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .oh-river-card,
  .oh-permissions-card {
    position: static;
    width: 100%;
  }

  .oh-event {
    grid-template-columns: 42px minmax(0, 1fr) auto;
  }

  .oh-event time {
    display: none;
  }

  .oh-two-column {
    grid-template-columns: 1fr;
  }

  .oh-table-row {
    grid-template-columns: 42px minmax(0, 1fr) auto;
  }

  .oh-table-row time,
  .oh-table-row strong {
    display: none;
  }

  .oh-control-grid,
  .oh-article-grid,
  .oh-security-features {
    grid-template-columns: 1fr;
  }

  .oh-cta-card,
  .oh-footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .oh-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .oh-newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .oh-brand span {
    font-size: 1.2rem;
  }

  .oh-section {
    padding: 54px 0;
  }

  .oh-benefit-card {
    grid-template-columns: 54px 1fr;
  }

  .oh-benefit-card a {
    grid-column: 2;
    justify-self: start;
  }

  .oh-tabs {
    margin-inline: -8px;
  }

  .oh-care-orbit {
    min-height: 360px;
    transform: scale(0.86);
  }

  .oh-footer-grid {
    grid-template-columns: 1fr;
  }

  .oh-newsletter div {
    flex-direction: column;
  }
}
