/*
Theme Name: Orion Behavioral Finance
Theme URI:
Author: Orion
Description: Custom theme for Orion Behavioral Finance
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: orion
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --orbit: #0064C5;
    --orbit-light: #67C1FF;
    --orbit-dark: #0091F9;
    --orbit-tint: rgba(0,100,197,0.06);
    --orbit-tint-strong: rgba(0,100,197,0.12);
    --onyx: #272730;
    --onyx-light: #4F4F59;
    --ash: #383838;
    --moon-rock: #C3C3C3;
    --ice: #F6F6F6;
    --ice-dark: #A2A2AA;
    --white: #FFFFFF;
    --border: #ECECEC;
    --border-mid: #DCDCDC;
    --text-primary: #272730;
    --text-secondary: #4F4F59;
    --text-tertiary: #8A8A94;
    --bg: #FFFFFF;
    --bg-soft: #F6F6F6;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --shadow-card: 0 12px 32px rgba(39,39,48,0.10), 0 4px 10px rgba(39,39,48,0.05);
    --shadow-card-hover: 0 20px 44px rgba(0,100,197,0.16), 0 8px 18px rgba(39,39,48,0.08);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  }

  body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-primary);
    background: #F0F0F0;
    line-height: 1.5;
    max-width: 1024px;
    margin: 0 auto;
  }

  /* ─── ANNOTATION SYSTEM ─────────────────────────────── */
  .annotated { position: relative; }

  .wireframe-wrapper {
    max-width: 780px;
    margin: 0 auto;
    padding: 32px 16px 64px;
  }

  .doc-header {
    background: var(--onyx);
    color: white;
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .doc-header-title { font-size: 15px; font-weight: 600; }
  .doc-header-meta { font-size: 12px; color: var(--ice-dark); }

  .section-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 28px 0 10px;
  }

  .section-divider-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    white-space: nowrap;
  }

  .section-divider-line {
    flex: 1;
    height: 0.5px;
    background: var(--border);
  }

  .annotation {
    font-size: 11px;
    color: var(--text-tertiary);
    margin-top: 8px;
    padding-left: 2px;
    font-style: italic;
    line-height: 1.5;
  }

  /* ─── SITE FRAME ─────────────────────────────────────── */
  .custom-logo {
    max-width: 100%;
    height: auto;
  }

  .site-frame, .site-identity {
    background: var(--white);
    border: 1px solid var(--border-mid);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
  }

.site-identity{
	padding:40px
}

  /* ─── NAV ────────────────────────────────────────────── */
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 32px;
    border-bottom: 1px solid var(--border);
    background: var(--white);
	margin-top:15px;
  }

  .nav-logo {
    display: flex;
    align-items: center;
  }

  .nav-logo svg {
    display: block;
    width: 100px;
    height: auto;
  }

  #site-navigation {
    font-size: 13px;
    color: var(--text-secondary);
  }

  .nav-links span:hover { color: var(--orbit); }

  .nav-btn {
    font-size: 13px;
    font-weight: 600;
    color: white;
    background: var(--orbit);
    padding: 9px 20px;
    border-radius: 22px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.005em;
  }
  .nav-btn:hover { background: var(--orbit-dark); }

.site-title-wrap{
	max-width:120px
}

.site-header{
	margin: 0 auto;
    display: block;
    width: 70%;}
	
	
	.main-navigation ul li {
		display: inline-block;
		list-style-type: none;
		padding: 0 15px;
		position: relative;
	}

	.main-navigation ul li a {
		display: inline-block;
		margin: 0 0 10px 0;
		line-height: 2;
	}
	
	.main-navigation a {
		color: #272c30;
		text-decoration:none;
	}
	
	.main-navigation .menu-cta a {
		border-radius: 5px;
		color: #fff;
		padding: 4px 12px;
		background: #272c30;
	}

	.main-navigation .menu-cta a:hover {
		color: #fff;
		box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.25);
		-webkit-box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.25);
	}
	
.main-navigation .nav-btn a{
	color:#FFF;
	margin-bottom:0
}


  /* ─── HERO ───────────────────────────────────────────── */
  .hero {
    padding: 72px 40px 64px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    background: var(--white);
  }

  .eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--orbit);
    margin-bottom: 18px;
  }

  .hero-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.15;
    max-width: 640px;
    margin: 0 auto 18px;
    letter-spacing: -0.022em;
  }

  .hero-sub {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto 40px;
  }

  .hero-ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 720px;
    margin: 0 auto;
  }

  .cta-card {
    border: none;
    border-radius: var(--radius-lg);
    padding: 20px 22px;
    text-align: left;
    background: var(--white);
    cursor: pointer;
    box-shadow: var(--shadow-card);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
  }

  .cta-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }

  .cta-card.accent {
    background: var(--orbit);
    color: var(--white);
  }

  .cta-card-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--orbit);
    margin-bottom: 8px;
  }
  .cta-card.accent .cta-card-eyebrow { color: rgba(255,255,255,0.85); }

  .cta-card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.3;
    letter-spacing: -0.005em;
  }
  .cta-card.accent .cta-card-title { color: var(--white); }

  .cta-card-desc {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 14px;
  }
  .cta-card.accent .cta-card-desc { color: rgba(255,255,255,0.9); }

  .cta-pill {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: white;
    background: var(--orbit);
    padding: 7px 16px;
    border-radius: 20px;
	text-decoration:none;
  }

  .cta-pill.blue { background: var(--orbit); }
  .cta-card.accent .cta-pill { background: var(--white); color: var(--orbit); }

  /* ─── PRODUCT CARDS ──────────────────────────────────── */
  .products-section {
    background: var(--ice);
    padding: 24px;
  }

  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .product-card {
    padding: 32px 30px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
  }

  .product-card:last-child { border-right: none; }

  .tag {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--orbit);
    padding: 0;
    margin-bottom: 12px;
    background: transparent;
    border: none;
  }

  .product-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -0.015em;
  }

  .product-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .price-block { margin-bottom: 6px; }

  .price {
    font-size: 32px;
    font-weight: 700;
    color: var(--orbit);
    letter-spacing: -0.025em;
    line-height: 1;
  }

  .price-unit {
    font-size: 13px;
    color: var(--text-tertiary);
    margin-left: 4px;
    font-weight: 500;
  }

  .price-note {
    font-size: 11px;
    color: var(--text-tertiary);
    margin-top: 6px;
    margin-bottom: 18px;
  }

  .feature-list {
    list-style: none;
    margin-bottom: 22px;
  }

  .feature-list li {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 8px 0 8px 18px;
    position: relative;
    border-bottom: 1px solid var(--border);
  }

  .feature-list li:last-child { border-bottom: none; }

  .feature-list li .check { display: none; }
  .feature-list li::before {
    content: "";
    position: absolute;
    left: 0; top: 15px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--orbit);
  }

  .btn-full {
    width: 100%;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: white;
    background: var(--orbit);
    padding: 13px 24px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.005em;
    transition: background 0.15s ease;
	text-decoration:none;
  }
  .cta-pill.blue{
	  text-decoration:none;
  }
  
  .gform-theme--framework .gfield_radio .gchoice label, .bundle-desc{
	  display:block!important;
  }
  
  .gform_next_button, .gform_previous_button{
	  border-radius:30px!important;
	  border-color:var(--border-mid)!important;
  }
  
  .gfield input{
	  border-color:var(--border-mid)!important;
  }
  
  .gform_next_button, .ginput_total, .ginput_product_price{
	  border:none!important;
  }
  
  .bundle-desc{
	  padding-top:4px!important;
  }
  
  .btn-full:hover { background: var(--orbit-dark); }

  .btn-full.orbit { background: var(--orbit); }
  .btn-full.onyx { background: var(--onyx); }
  .btn-full.onyx:hover { background: #1a1a22; }

  .btn-outline {
    width: 100%;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--orbit);
    background: transparent;
    padding: 12px 24px;
    border-radius: 999px;
    border: 1.5px solid var(--orbit);
    cursor: pointer;
    margin-top: 8px;
  }
  .btn-outline:hover { background: var(--orbit-tint); }


  #menu-primary-menu{
	  margin-top:10px;
  }

  /* ─── CHECKOUT ───────────────────────────────────────── */
  .checkout-wrap {
    background: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: var(--shadow-card);
  }

  .checkout-head {
    padding: 20px 30px 16px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .checkout-title { font-size: 15px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.005em; }
  .checkout-sub { font-size: 11px; color: var(--text-tertiary); margin-top: 3px; }

  .steps {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .step {
    width: 24px; height: 24px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .step-on { background: var(--orbit); color: white; }

  .step-off {
    background: var(--ice);
    color: var(--text-tertiary);
    border: 1px solid var(--border);
  }

  .step-done { background: var(--orbit-tint-strong); color: var(--orbit); }

  .step-connector {
    width: 18px; height: 2px;
    background: var(--border);
    border-radius: 1px;
  }

  .checkout-body { padding: 20px 28px; }

  .field { margin-bottom: 14px; }

  .field-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
  }

  .field-input {
    display: block;
    width: 100%;
    height: 42px;
    border: 1px solid var(--border-mid);
    border-radius: var(--radius-sm);
    background: var(--white);
    padding: 0 14px;
    font-size: 13px;
    color: var(--text-tertiary);
    font-family: 'Inter', sans-serif;
  }
  .field-input:focus { border-color: var(--orbit); outline: none; box-shadow: 0 0 0 3px var(--orbit-tint); }

  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

  .order-summary {
    background: var(--ice);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    margin-bottom: 18px;
    border: 1px solid var(--border);
  }

  .order-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 3px 0;
    color: var(--text-secondary);
  }

  .order-total {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    padding-top: 10px;
    margin-top: 8px;
    border-top: 1px solid var(--border-mid);
    color: var(--text-primary);
  }

  .bundle-note {
    font-size: 12px;
    color: var(--text-tertiary);
    background: var(--ice);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    margin-bottom: 16px;
    border: 1px solid var(--border);
    line-height: 1.55;
  }

  .series-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    margin-bottom: 10px;
    transition: border-color 0.15s, background 0.15s;
  }
  .series-option:hover { border-color: var(--orbit-light); }

  .series-option.selected {
    border-color: var(--orbit);
    background: var(--orbit-tint);
  }

  .series-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3px;
    letter-spacing: -0.005em;
  }

  .series-option.selected .series-name { color: var(--orbit); }

  .series-desc { font-size: 12px; color: var(--text-secondary); }

  .series-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--orbit);
    white-space: nowrap;
  }

  .sessions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px; }

  .session-slot {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    font-size: 12px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
  }
  .session-slot:hover { border-color: var(--orbit-light); }

  .session-slot.selected {
    border-color: var(--orbit);
    background: var(--orbit-tint);
  }

  .slot-date {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    letter-spacing: -0.005em;
  }

  .session-slot.selected .slot-date { color: var(--orbit); }

  .textarea-field {
    width: 100%;
    height: 80px;
    padding: 12px 14px;
    resize: none;
    font-size: 13px;
    border-radius: var(--radius-sm);
    background: var(--white);
    border: 1px solid var(--border-mid);
    color: var(--text-tertiary);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
  }
  .textarea-field:focus { border-color: var(--orbit); outline: none; box-shadow: 0 0 0 3px var(--orbit-tint); }

  /* ─── CONFIRM ────────────────────────────────────────── */
  .confirm-wrap {
    padding: 52px 32px 44px;
    text-align: center;
    background: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    box-shadow: var(--shadow-card);
  }

  .confirm-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--orbit);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
  }
  .confirm-icon svg circle, .confirm-icon svg polyline { stroke: #FFFFFF !important; }

  .confirm-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.015em;
  }

  .confirm-body {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 340px;
    margin: 0 auto 22px;
  }

  .deliverables {
    background: var(--ice);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    text-align: left;
    margin-bottom: 20px;
    border: 1px solid var(--border);
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .deliverables-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin-bottom: 10px;
  }

  .deliverable-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    padding: 5px 0;
    border-bottom: 1px solid var(--border);
  }

  .deliverable-item:last-child { border-bottom: none; }

  /* ─── FOOTER ─────────────────────────────────────────── */
  .site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
    border-top: 1px solid var(--border);
    background: var(--white);
  }

  .footer-text { font-size: 11px; color: var(--text-tertiary); }

  .orion-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--text-tertiary);
  }

  /* ─── SPEC CALLOUTS ──────────────────────────────────── */
  .spec-box {
    background: #FFFBEB;
    border: 1px solid #F0D070;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    margin-top: 10px;
    margin-bottom: 4px;
  }

  .spec-box-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #92710A;
    margin-bottom: 6px;
  }

  .spec-box-items {
    list-style: none;
  }

  .spec-box-items li {
    font-size: 12px;
    color: #6B5309;
    padding: 2px 0;
    padding-left: 12px;
    position: relative;
    line-height: 1.5;
  }

  .spec-box-items li::before {
    content: "→";
    position: absolute;
    left: 0;
    font-size: 10px;
  }

  /* ─── GRAVITY FORMS ──────────────────────────────────── */
  .gform-theme--framework .gf_progressbar .percentbar_orange {
    background-color: var(--orbit) !important;
  }

  .gform-theme--framework {
    --gf-ctrl-btn-bg-color-primary: var(--orbit) !important;
  }

  /* Bundle selector — Product field set to Radio Buttons */
  .gform-theme--framework .gfield_radio {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .gform-theme--framework .gfield_radio .gchoice {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    background: var(--white);
  }

  .gform-theme--framework .gfield_radio .gchoice:hover {
    border-color: var(--orbit-light);
  }

  /* Hide the native radio input */
  .gform-theme--framework .gfield_radio .gchoice input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
  }

  /* Label fills the row and puts price on the right */
  .gform-theme--framework .gfield_radio .gchoice label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.005em;
    line-height: 1.3;
  }

  /* Description text inside the label */
  .gform-theme--framework .gfield_radio .gchoice label .bundle-desc {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: var(--text-secondary);
    margin-top: 3px;
    letter-spacing: 0;
  }

  /* Price span GF renders inside the label */
  .gform-theme--framework .gfield_radio .gchoice label .price {
    font-size: 14px;
    font-weight: 700;
    color: var(--orbit);
    white-space: nowrap;
    margin-left: 16px;
    flex-shrink: 0;
  }

  /* Selected state */
  .gform-theme--framework .gfield_radio .gchoice:has(input[type="radio"]:checked) {
    border-color: var(--orbit);
    background: var(--orbit-tint);
  }

  .gform-theme--framework .gfield_radio .gchoice:has(input[type="radio"]:checked) label {
    color: var(--orbit);
  }

  .gform-theme--framework .gfield_radio .gchoice:has(input[type="radio"]:checked) label .bundle-desc {
    color: var(--orbit);
    opacity: 0.75;
  }
  }
